Home
last modified time | relevance | path

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

/PHP-5.5/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.5/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.5/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.5/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.5/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt6 $t1 = 'test1';
10 global $t1;
12 return $t1;
/PHP-5.5/Zend/tests/
H A Dbug55086.phpt8 public function hello() { return 'hello from t1'; }
35 hello from t1
36 hello from t1
/PHP-5.5/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.5/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.5/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()
H A Dstring.c3268 char *t1, *t2; local
3274 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|Z", &t1, &t1_len, &t2, &t2_len, &percent)…
3290 sim = php_similar_char(t1, t1_len, t2, t2_len);
/PHP-5.5/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.5/ext/standard/tests/array/
H A Dbug29493.phpt5 function t1()
71 t1();
/PHP-5.5/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp23 long t1; member
/PHP-5.5/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.5/ext/json/
H A DJSON_parser.c420 char *t1 = from.c; \
424 to.c = t1; \
/PHP-5.5/Zend/
H A Dzend_operators.c43 #define TYPE_PAIR(t1,t2) (((t1) << 4) | (t2)) argument
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c67858 static const u64 t1 = ((u64)0x3ff00000)<<32;
67860 u64 t2 = t1;

Completed in 458 milliseconds