Home
last modified time | relevance | path

Searched refs:t (Results 151 – 175 of 1568) sorted by relevance

12345678910>>...63

/PHP-5.5/tests/classes/
H A Dstatic_mix_2.phpt20 $t = new pass();
21 $t->show();
24 echo "Done\n"; // shouldn't be displayed
H A Dbug24445.phpt7 $t = new Test;
8 var_dump(get_parent_class($t));
/PHP-5.5/ext/zip/lib/
H A Dzip_win32.h25 # define mkstemp(t) _creat(_mktemp(t), _S_IREAD|_S_IWRITE) argument
/PHP-5.5/ext/date/tests/
H A Doo_002.phpt16 $t = new _t("Asia/Tokyo");
17 var_dump($t->getName());
18 $c = clone $t;
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug42151.phpt17 echo 'I don\'t get executed either.' . "\n";
29 SOAP-ERROR: Parsing WSDL: Couldn't load from 'httpx://' : failed to load external entity "httpx://"
32 I don't get executed either.
/PHP-5.5/Zend/tests/
H A Dbug38624.phpt14 throw new Exception( "doesn't work" );
19 throw new Exception( "doesn't work" );
29 Fatal error: Uncaught exception 'Exception' with message 'doesn't work' in %s:%d
/PHP-5.5/ext/mbstring/tests/
H A Dzend_multibyte-01.phpt15 �\�\�\("�h���~�t�@�\");
18 �h���~�t�@�\
/PHP-5.5/ext/intl/tests/
H A Dini_use_exceptions_basic.phpt8 $t = transliterator_create('any-hex');
10 var_dump($t->transliterate('a', 3));
16 var_dump($t->transliterate('a', 3));
H A Dtransliterator_create_from_rule_error.phpt9 $t = Transliterator::createFromRules();
12 $t = Transliterator::createFromRules("a","b");
15 $t = Transliterator::createFromRules("\x8Fss");
23 $t = Transliterator::createFromRules($rules);
30 $t = Transliterator::createFromRules($rules);
/PHP-5.5/ext/simplexml/tests/
H A Dbug69169.phpt12 <item s="t" />
18 $b = str_replace(array("\n", "\r", "\t"), "", $a);
43 [s] => t
/PHP-5.5/ext/opcache/tests/
H A Dphp_cli_server.inc17 $cmd = "{$php_executable} -t {$doc_root} $ini -S " . PHP_CLI_SERVER_ADDRESS;
20 $cmd = "exec {$php_executable} -t {$doc_root} $ini -S " . PHP_CLI_SERVER_ADDRESS . " 2>/dev/null";
41 // don't bother sleeping, server is already up
44 // sleeping doesn't work.
/PHP-5.5/ext/standard/tests/array/
H A Dshuffle_variation5.phpt88 string\([0-9]*\) "[0-9 a-z \n \0 \t]*"
90 string\([0-9]*\) "[0-9 a-z \n \0 \t]*"
92 string\([0-9]*\) "[0-9 a-z \n \0 \t]*"
94 string\([0-9]*\) "[0-9 a-z \n \0 \t]*"
96 string\([0-9]*\) "[0-9 a-z \n \0 \t]*"
98 string\([0-9]*\) "[0-9 a-z \n \0 \t]*"
H A Darray_unshift_variation8.phpt24 '\t\r\v The quick brown fo\fx jumped over the lazy dog',
26 'hello world\\t',
27 'This is \ta text in bold letters\r\s\malong with slashes\n : HELLO WORLD\t'
94 string(53) "\t\r\v The quick brown fo\fx jumped over the lazy dog"
107 string(53) "\t\r\v The quick brown fo\fx jumped over the lazy dog"
156 string(13) "hello world\t"
169 string(13) "hello world\t"
187 string(74) "This is \ta text in bold letters\r\s\malong with slashes\n : HELLO WORLD\t"
200 string(74) "This is \ta text in bold letters\r\s\malong with slashes\n : HELLO WORLD\t"
/PHP-5.5/ext/standard/tests/strings/
H A Dstrcspn_variation6.phpt69 "\t",
70 "t\ ",
71 '\t',
72 "\t\ ",
73 " \t",
74 "\t\i\100\xaa"
H A Dhtml_entity_decode_win1252.phpt41 echo "Special test for &#x81; (shouldn't decode):\n";
45 echo "Special test for &#x8D; (shouldn't decode):\n";
49 echo "Special test for &#x8F; (shouldn't decode):\n";
53 echo "Special test for &#x90; (shouldn't decode):\n";
57 echo "Special test for &#x9D; (shouldn't decode):\n";
73 Special test for &#x81; (shouldn't decode):
76 Special test for &#x8D; (shouldn't decode):
79 Special test for &#x8F; (shouldn't decode):
82 Special test for &#x90; (shouldn't decode):
85 Special test for &#x9D; (shouldn't decode):
/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c115 unsigned int t; in sha256_process_block() local
160 for (t = 0; t < 16; ++t) { in sha256_process_block()
161 W[t] = SWAP (*words); in sha256_process_block()
164 for (t = 16; t < 64; ++t) in sha256_process_block()
165 W[t] = R1 (W[t - 2]) + W[t - 7] + R0 (W[t - 15]) + W[t - 16]; in sha256_process_block()
168 for (t = 0; t < 64; ++t) { in sha256_process_block()
169 uint32_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha256_process_block()
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.c442 int t; in pdo_parse_params() local
457 if (t == PDO_PARSER_BIND || t == PDO_PARSER_BIND_POS) { in pdo_parse_params()
458 if (t == PDO_PARSER_BIND) { in pdo_parse_params()
640 t = plc->pos - ptr; in pdo_parse_params()
641 if (t) { in pdo_parse_params()
643 newbuffer += t; in pdo_parse_params()
653 if (t) { in pdo_parse_params()
654 memcpy(newbuffer, ptr, t); in pdo_parse_params()
655 newbuffer += t; in pdo_parse_params()
752 int t;
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dfgetcsv_variation18.phpt30 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
31 "a+", "a+b", "a+t",
32 "w+", "w+b", "w+t",
33 "x+", "x+b", "x+t");
131 -- Testing fgetcsv() with file opened using r+t mode --
155 -- Testing fgetcsv() with file opened using a+t mode --
179 -- Testing fgetcsv() with file opened using w+t mode --
203 -- Testing fgetcsv() with file opened using x+t mode --
251 -- Testing fgetcsv() with file opened using r+t mode --
275 -- Testing fgetcsv() with file opened using a+t mode --
[all …]
H A Dfputcsv_variation4.phpt94 -- file opened in r+t --
118 -- file opened in a+t --
142 -- file opened in w+t --
166 -- file opened in x+t --
190 -- file opened in r+t --
214 -- file opened in a+t --
238 -- file opened in w+t --
262 -- file opened in x+t --
286 -- file opened in r+t --
310 -- file opened in a+t --
[all …]
/PHP-5.5/ext/interbase/
H A Dibase_query.c583 &t.tm_mon, &t.tm_mday, &t.tm_year, &t.tm_hour, &t.tm_min, &t.tm_sec); in _php_ibase_bind_array()
591 t.tm_mon--; in _php_ibase_bind_array()
600 n = sscanf(Z_STRVAL_P(val), "%d%*[/]%d%*[/]%d", &t.tm_mon, &t.tm_mday, &t.tm_year); in _php_ibase_bind_array()
608 t.tm_mon--; in _php_ibase_bind_array()
617 n = sscanf(Z_STRVAL_P(val), "%d%*[:]%d%*[:]%d", &t.tm_hour, &t.tm_min, &t.tm_sec); in _php_ibase_bind_array()
687 struct tm t; in _php_ibase_bind() local
1318 struct tm t; in _php_ibase_var_zval() local
1394 t.tm_isdst = -1; in _php_ibase_var_zval()
1407 t.tm_year + 1900, t.tm_hour, t.tm_min, t.tm_sec); in _php_ibase_var_zval()
1410 …l = slprintf(string_data, sizeof(string_data), "%02d/%02d/%4d", t.tm_mon + 1, t.tm_mday, t.tm_year… in _php_ibase_var_zval()
[all …]
/PHP-5.5/tests/lang/
H A Dbug26182.phpt17 $t = new A ();
19 print_r($t);
/PHP-5.5/Zend/tests/generators/finally/
H A Dreturn_yield.phpt5 function foo($f, $t) {
6 for ($i = $f; $i <= $t; $i++) {
H A Dyield_return.phpt5 function foo($f, $t) {
6 for ($i = $f; $i <= $t; $i++) {
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_xclass.c69 pcre_uchar t; in PRIV() local
100 while ((t = *data++) != XCL_END) in PRIV()
103 if (t == XCL_SINGLE) in PRIV()
115 else if (t == XCL_RANGE) in PRIV()
136 BOOL isprop = t == XCL_PROP; in PRIV()
/PHP-5.5/ext/mysqli/tests/
H A Dbug66124.phpt36 printf("Can't prepare\n");
46 printf("Can't execute\n");
58 printf("Can't select\n");
76 printf("Can't execute\n");
87 printf("Can't select\n");

Completed in 38 milliseconds

12345678910>>...63