Searched refs:T2 (Results 1 – 22 of 22) sorted by relevance
/PHP-7.0/ext/reflection/tests/ |
H A D | bug71018.phpt | 19 class T2 extends T1 {} 27 $Prop2->setValue(\T2::class, 'hello'); 28 var_dump("T2::self = " . T2::getDataBySelf()); 29 var_dump("T2::static = " . T2::getDataByStatic()); 34 T2::$data = 'hello'; 36 var_dump("T2::self = " . T2::getDataBySelf()); 37 var_dump("T2::static = " . T2::getDataByStatic()); 40 string(16) "T2::self = hello" 41 string(18) "T2::static = hello" 42 string(16) "T2::self = hello" [all …]
|
H A D | traits004.phpt | 6 trait T2 { } 10 class C3 { use T1; use T2; } 44 string(2) "T2" 52 ["T2"]=> 55 string(2) "T2"
|
H A D | bug64239.phpt | 6 use T2 { t2method as Bmethod; } 8 trait T2 {
|
/PHP-7.0/Zend/tests/traits/ |
H A D | bug61998.phpt | 35 use T2 { 42 trait T2 { 44 echo "From T2\n"; 57 $b->newFunc2(); //from T2 58 $b->newFunc3(); //from T2 66 From T2 67 From T2
|
H A D | language015.phpt | 8 trait T2 { 9 function foo() {echo "T2\n";} 13 T2::foo insteadof T1; 17 Fatal error: Required Trait T2 wasn't added to C in %slanguage015.php on line %d
|
H A D | language016.phpt | 8 trait T2 { 9 function foo() {echo "T2\n";} 13 T1::foo insteadof T2; 17 Fatal error: Required Trait T2 wasn't added to C in %slanguage016.php on line %d
|
H A D | language017.phpt | 8 trait T2 { 9 function foo() {echo "T2\n";} 13 T2::foo as private; 17 Fatal error: Required Trait T2 wasn't added to C in %slanguage017.php on line %d
|
H A D | bug61052.phpt | 8 trait T2 { 9 function foo(){ echo "T2\n"; } 12 use T1, T2 {
|
H A D | bug60217a.phpt | 10 trait T2 { 15 use T1, T2;
|
H A D | flattening001.phpt | 13 trait T2 { 21 use T2;
|
/PHP-7.0/Zend/tests/ |
H A D | bug69174.phpt | 7 use T1, T2 { 8 T1::foo insteadof T2; 9 T1::bar insteadof T2;
|
H A D | bug55086.phpt | 11 trait T2 { 18 use N1\T2; 20 use T1, T2 { 21 T1::hello insteadof T2;
|
H A D | bug64239_1.phpt | 6 use T2 { t2method as Bmethod; } 12 trait T2 {
|
H A D | bug70156.phpt | 12 trait T2 { 23 use T2 {
|
H A D | bug64239_4.phpt | 6 use T2 { t2method as Bmethod; } 15 trait T2 {
|
H A D | bug64239_3.phpt | 6 use T2 { t2method as Bmethod; } 15 trait T2 {
|
H A D | bug64239_2.phpt | 11 use T2 { t2method as Bmethod; } 23 trait T2 {
|
/PHP-7.0/tests/lang/ |
H A D | bug30862.phpt | 14 class T2 { 17 print_r(T2::$a);
|
/PHP-7.0/Zend/tests/assert/ |
H A D | expect_015.phpt | 99 use T1, T2 { 101 T2::foo as bar; 248 use T1, T2 { 250 T2::foo as bar;
|
/PHP-7.0/ext/hash/ |
H A D | hash_sha.c | 484 php_hash_uint32 x[16], T1, T2, W[64]; in SHA256Transform() local 499 T2 = SHA256_F2(a) + SHA256_F1(a,b,c); in SHA256Transform() 501 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform() 794 php_hash_uint64 x[16], T1, T2, W[80]; in SHA512Transform() local 809 T2 = SHA512_F2(a) + SHA512_F1(a,b,c); in SHA512Transform() 811 d = c; c = b; b = a; a = T1 + T2; in SHA512Transform()
|
/PHP-7.0/ext/standard/ |
H A D | crypt_sha256.c | 164 uint32_t T2 = S0 (a) + Maj (a, b, c); in sha256_process_block() local 172 a = T1 + T2; in sha256_process_block()
|
H A D | crypt_sha512.c | 191 uint64_t T2 = S0 (a) + Maj (a, b, c); in sha512_process_block() local 199 a = T1 + T2; in sha512_process_block()
|
Completed in 33 milliseconds