HomeSort by relevance Sort by last modified time
    Searched defs:input (Results 1 - 25 of 266) sorted by null

1 2 3 4 5 6 7 8 91011

  /webstack/webstack/branches/CoolStack12Rtm/src/lighttpd-1.4.18/src/
mod_ssi_exprparser.y 31 input ::= exprline(B). { label
configparser.y 111 input ::= metalines. label
  /webstack/webstack/trunk/src/lighttpd-1.4.18/src/
mod_ssi_exprparser.y 31 input ::= exprline(B). { label
configparser.y 111 input ::= metalines. label
  /webstack/webstack/trunk/src/php-5.2.0/ext/date/tests/
bug33532.php 7 $input = "10:00:00 AM July 1 2005"; variable
8 print "input " . $input . "\n";
9 $tStamp = strtotime($input);
15 $input = "10:00:00 AM July 1 2005"; variable
16 print "input " . $input . "\n";
17 $tStamp = strtotime($input);
  /webstack/webstack/branches/CoolStack12Rtm/src/libiconv-1.9.2/libcharset/tools/
locale_x11encoding.c 14 char* input; local
27 input = "";
28 if (XmbTextListToTextProperty(display, &input, 1, XTextStyle, &textprop) != Success) {
  /webstack/webstack/trunk/src/libiconv-1.9.2/libcharset/tools/
locale_x11encoding.c 14 char* input; local
27 input = "";
28 if (XmbTextListToTextProperty(display, &input, 1, XTextStyle, &textprop) != Success) {
  /webstack/webstack/branches/CoolStack12Rtm/src/db-4.5.20/java/src/com/sleepycat/bind/tuple/
TupleBase.java 113 * input object.
115 * @param input is the source tuple input object.
119 public static void inputToEntry(TupleInput input, DatabaseEntry entry) {
121 entry.setData(input.getBufferBytes(), input.getBufferOffset(),
122 input.getBufferLength());
126 * Utility method to create a new tuple input object for reading the data
127 * from a given buffer. If an existing input is reused, it is reset before
132 * @return the new tuple input object
    [all...]
  /webstack/webstack/trunk/src/db-4.5.20/java/src/com/sleepycat/bind/tuple/
TupleBase.java 113 * input object.
115 * @param input is the source tuple input object.
119 public static void inputToEntry(TupleInput input, DatabaseEntry entry) {
121 entry.setData(input.getBufferBytes(), input.getBufferOffset(),
122 input.getBufferLength());
126 * Utility method to create a new tuple input object for reading the data
127 * from a given buffer. If an existing input is reused, it is reset before
132 * @return the new tuple input object
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/freetds-0.64/src/odbc/unittests/
const_params.c 11 SQLINTEGER input, ind, ind2, ind3, output; local
28 if (SQLBindParameter(Statement, 1, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &input, 0, &ind) != SQL_SUCCESS)
29 ODBC_REPORT_ERROR("Unable to bind input parameter");
39 input = 13579;
40 ind = sizeof(input);
56 if (SQLBindParameter(Statement, 2, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &input, 0, &ind2) != SQL_SUCCESS)
57 ODBC_REPORT_ERROR("Unable to bind input parameter");
67 input = 13579;
68 ind2 = sizeof(input);
funccall.c 11 SQLINTEGER input, output; local
23 if (SQLBindParameter(Statement, 2, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &input, 0, &ind2) != SQL_SUCCESS)
24 ODBC_REPORT_ERROR("Unable to bind input parameter");
34 input = 123;
35 ind2 = sizeof(input);
57 input = 567;
58 ind2 = sizeof(input);
93 if (SQLBindParameter(Statement, 2, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &input, 0, &ind2) != SQL_SUCCESS) {
94 printf("Unable to bind input parameter\n");
114 input = 987
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/php-5.2.4/ext/mbstring/libmbfl/tests/
sample.c 18 unsigned char input[] = "????????????"; /* EUC-JP kanji string */ local
29 string.val = (unsigned char *)input;
30 string.len = strlen(input);
  /webstack/webstack/branches/CoolStack12Rtm/src/ruby-1.8.6/lib/shell/
filter.rb 24 @input = nil # input filter
27 attr_reader :input
29 def input=(filter)
30 @input = filter
35 if @input
36 @input.each(rs){|l| yield l}
46 self.input = src
79 filter.input = self
  /webstack/webstack/branches/CoolStack12Rtm/src/rubygems-0.9.0/test/
mockgemui.rb 15 def initialize(input="")
16 super(StringIO.new(input), StringIO.new, StringIO.new)
21 def input method in class:MockGemUi
  /webstack/webstack/trunk/src/freetds-0.64/src/odbc/unittests/
const_params.c 11 SQLINTEGER input, ind, ind2, ind3, output; local
28 if (SQLBindParameter(Statement, 1, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &input, 0, &ind) != SQL_SUCCESS)
29 ODBC_REPORT_ERROR("Unable to bind input parameter");
39 input = 13579;
40 ind = sizeof(input);
56 if (SQLBindParameter(Statement, 2, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &input, 0, &ind2) != SQL_SUCCESS)
57 ODBC_REPORT_ERROR("Unable to bind input parameter");
67 input = 13579;
68 ind2 = sizeof(input);
  /webstack/webstack/trunk/src/php-5.2.0/ext/mbstring/libmbfl/tests/
sample.c 18 unsigned char input[] = "????????????"; /* EUC-JP kanji string */ local
29 string.val = (unsigned char *)input;
30 string.len = strlen(input);
  /webstack/webstack/trunk/src/php-5.2.0/ext/pcre/pcrelib/
pcre_scanner_unittest.cc 54 const char input[] = "\n" local
61 Scanner s(input);
93 s.GetComments(0, sizeof(input), &comments);
100 s.GetComments(0, strchr(input, '/') - input, &comments);
104 s.GetComments(strchr(input, '/') - input - 1, sizeof(input),
112 s.GetComments(strchr(input, '/') - input - 1
    [all...]
  /webstack/webstack/trunk/src/php-5.2.4/ext/mbstring/libmbfl/tests/
sample.c 18 unsigned char input[] = "????????????"; /* EUC-JP kanji string */ local
29 string.val = (unsigned char *)input;
30 string.len = strlen(input);
  /webstack/webstack/trunk/src/ruby-1.8.5/lib/shell/
filter.rb 24 @input = nil # input filter
27 attr_reader :input
29 def input=(filter)
30 @input = filter
35 if @input
36 @input.each(rs){|l| yield l}
46 self.input = src
79 filter.input = self
  /webstack/webstack/trunk/src/ruby-1.8.6/lib/shell/
filter.rb 24 @input = nil # input filter
27 attr_reader :input
29 def input=(filter)
30 @input = filter
35 if @input
36 @input.each(rs){|l| yield l}
46 self.input = src
79 filter.input = self
  /webstack/webstack/trunk/src/rubygems-0.9.0/test/
mockgemui.rb 15 def initialize(input="")
16 super(StringIO.new(input), StringIO.new, StringIO.new)
21 def input method in class:MockGemUi
  /webstack/php-experiment/php-5.2.9RC3/ext/mbstring/libmbfl/tests/
sample.c 18 unsigned char input[] = "????????????"; /* EUC-JP kanji string */ local
29 string.val = (unsigned char *)input;
30 string.len = strlen(input);
  /webstack/webstack/branches/CoolStack12Rtm/src/gmp-4.2.1/demos/calc/
calcread.c 64 /* By default use readline when the input is a tty. It's a bit contrary
66 the input is coming from, but this is pretty convenient. */
131 /* This redefined input() might let a traditional lex use the readline
138 input (void) function
  /webstack/webstack/branches/CoolStack12Rtm/src/libxml2-2.6.27/include/libxml/
debugXML.h 99 * This is a generic signature for the XML shell input function.
120 xmlShellReadlineFunc input; member in struct:_xmlShellCtxt
207 xmlShellReadlineFunc input,
  /webstack/webstack/branches/CoolStack12Rtm/src/ncurses-5.5/test/
ditto.c 44 FILE *input; member in struct:__anon2272
96 data[0].input = stdin;
99 data[j].input =
111 data[j].input);

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 91011