Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 25 of 29) sorted by relevance

12

/PHP-5.6/ext/dom/tests/
H A Dbug28721.phpt57 $p->appendChild($t1 = $xml->createTextNode(" t1 "));
65 echo "\nAppend t1 to p:\n";
66 $ret = $p->appendChild($t1);
71 echo "t1 == ret: ";
72 var_dump( $t1 === $ret );
128 name (value): #text ( t1 )
153 Append t1 to p:
180 name (value): #text ( t1 )
185 t1 == ret: bool(true)
279 name (value): #text ( t1 )
[all …]
/PHP-5.6/tests/lang/
H A Dbug24951.phpt9 function t1()
12 echo "Hello from t1 1 ";
13 echo "Hello from t1 2 ";
33 t1(); echo "\n";
38 [Hello from t1 1 Hello from t1 2 ]
/PHP-5.6/ext/sqlite3/tests/
H A Dbug73068.phpt10 $db->exec("CREATE TABLE IF NOT EXISTS t1(a INT UNIQUE, b INT)");
11 $db->exec("INSERT OR REPLACE INTO t1(a,b) VALUES('1','2')");
13 $r = $db->query("SELECT * FROM t1 WHERE a='1' AND b='2'");
16 $db->exec("DELETE FROM t1 WHERE a='1' AND b='2'");
18 $r = $db->query("SELECT * FROM t1;");
/PHP-5.6/ext/oci8/tests/
H A Dpecl_bug8816.phpt13 $create_1 = "CREATE TABLE t1 (id INTEGER, l1 LONG)";
15 $drop_1 = "DROP TABLE t1";
33 $insert = "INSERT INTO t1 VALUES($i, ".$val.")";
47 t1.l1, t2.l2
49 t1, t2
51 t1.id = t2.id
52 ORDER BY t1.id ASC
H A Dbug38173.phpt13 $create_1 = "CREATE TABLE t1 (id INTEGER)";
15 $drop_1 = "DROP TABLE t1";
29 $insert = "INSERT INTO t1 VALUES(".$i.")";
42 t1.*,
45 t1
H A Dbug40415.phpt15 $create_1 = "CREATE TABLE t1 (id1 INTEGER)";
17 $drop_1 = "DROP TABLE t1";
31 $insert = "INSERT INTO t1 VALUES(1".$i.")";
45 $query = "SELECT t1.*, CURSOR( SELECT * FROM t2 ) AS CURSOR FROM t1";
61 $query = "SELECT t1.*, CURSOR( SELECT * FROM t2 ) AS CURSOR FROM t1";
/PHP-5.6/ext/hash/
H A Dhash_snefru.c48 const php_hash_uint32 *t0,*t1; in Snefru() local
70 t1 = tables[2*index+1]; in Snefru()
74 round(B01, B02, B03, t1); in Snefru()
75 round(B02, B03, B04, t1); in Snefru()
78 round(B05, B06, B07, t1); in Snefru()
79 round(B06, B07, B08, t1); in Snefru()
82 round(B09, B10, B11, t1); in Snefru()
83 round(B10, B11, B12, t1); in Snefru()
86 round(B13, B14, B15, t1); in Snefru()
87 round(B14, B15, B00, t1); in Snefru()
H A Dhash_tiger.c44 a -= t1[(unsigned char)(c)] ^ \
51 t1[(unsigned char)(((php_hash_uint32)((c)>>(4*8)))>>(3*8))]; \
H A Dphp_hash_tiger_tables.h22 #define t1 (table) macro
/PHP-5.6/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt6 $t1 = 'test1';
10 global $t1;
12 return $t1;
/PHP-5.6/Zend/tests/
H A Dbug55086.phpt8 public function hello() { return 'hello from t1'; }
35 hello from t1
36 hello from t1
H A Dfunction_arguments_003.phpt7 function t1($a = 1 + 1, $b = 1 << 2, $c = "foo" . "bar", $d = a * 10) {
11 t1();
/PHP-5.6/tests/classes/
H A Dprivate_006b.phpt18 $t1 = new first();
19 $t1->do_show();
H A Dincdec_property_002.phpt24 $t1 = $obj->a++;
H A Dincdec_property_004.phpt24 $t1 = ++$obj->a;
/PHP-5.6/ext/date/lib/
H A Dtimelib.c68 int timelib_time_compare(timelib_time *t1, timelib_time *t2) in timelib_time_compare() argument
70 if (t1->sse == t2->sse) { in timelib_time_compare()
71 if (t1->f == t2->f) { in timelib_time_compare()
75 if (t1->sse < 0) { in timelib_time_compare()
76 return (t1->f < t2->f) ? 1 : -1; in timelib_time_compare()
78 return (t1->f < t2->f) ? -1 : 1; in timelib_time_compare()
82 return (t1->sse < t2->sse) ? -1 : 1; in timelib_time_compare()
H A Dtimelib.h141 int timelib_time_compare(timelib_time *t1, timelib_time *t2);
/PHP-5.6/ext/pdo_sqlite/tests/
H A Dbug_42589.phpt14 $result = $db->query('SELECT * FROM test t1 LEFT JOIN test t2 ON t1.field1 = t2.field1');
/PHP-5.6/ext/standard/
H A Dcrypt_freesec.c433 uint32_t t0, t1; in des_setkey() local
438 t1 = (k1 << shifts) | (k1 >> (28 - shifts)); in des_setkey()
445 | comp_maskl[4][(t1 >> 21) & 0x7f] in des_setkey()
446 | comp_maskl[5][(t1 >> 14) & 0x7f] in des_setkey()
447 | comp_maskl[6][(t1 >> 7) & 0x7f] in des_setkey()
448 | comp_maskl[7][t1 & 0x7f]; in des_setkey()
455 | comp_maskr[4][(t1 >> 21) & 0x7f] in des_setkey()
456 | comp_maskr[5][(t1 >> 14) & 0x7f] in des_setkey()
457 | comp_maskr[6][(t1 >> 7) & 0x7f] in des_setkey()
458 | comp_maskr[7][t1 & 0x7f]; in des_setkey()
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_explain_metadata.phpt17 if (!$res = mysqli_query($link, 'EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2'))
68 if ($stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') && $stmt->execute()) {
103 $stmt->prepare('EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2') &&
H A Dmysqli_get_warnings.phpt90 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
93 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
102 if (!$mysqli->query("DROP TABLE t1"))
119 if (!$mysqli->query("DROP TABLE IF EXISTS t1"))
122 if (!$mysqli->query("CREATE TABLE t1 (a smallint)"))
126 if (!$mysqli->query("INSERT IGNORE INTO t1(a) VALUES (65536), (65536), (65536)"))
154 if (!mysqli_query($link, "DROP TABLE IF EXISTS t1"))
/PHP-5.6/ext/standard/tests/array/
H A Dbug29493.phpt5 function t1()
71 t1();
/PHP-5.6/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp23 long t1; member
/PHP-5.6/ext/gd/
H A Dconfig.m4223 PHP_CHECK_LIBRARY(t1, T1_StrError,
227 PHP_ADD_LIBRARY_WITH_PATH(t1, $GD_T1_DIR/$PHP_LIBDIR, GD_SHARED_LIBADD)
/PHP-5.6/ext/json/
H A DJSON_parser.c420 char *t1 = from.c; \
424 to.c = t1; \

Completed in 58 milliseconds

12