Home
last modified time | relevance | path

Searched refs:T1 (Results 1 – 25 of 26) sorted by relevance

12

/PHP-7.0/ext/reflection/tests/
H A Dtraits004.phpt5 trait T1 { }
9 class C2 { use T1; }
10 class C3 { use T1; use T2; }
29 string(2) "T1"
32 ["T1"]=>
35 string(2) "T1"
42 string(2) "T1"
47 ["T1"]=>
50 string(2) "T1"
H A Dtraits005.phpt5 trait T1 { function m1() { } function m2() { } }
8 class C2 { use T1; }
9 class C3 { use T1 { m1 as a1; } }
10 class C4 { use T1 { m1 as a1; m2 as a2; } }
31 string(6) "T1::m1"
37 string(6) "T1::m1"
39 string(6) "T1::m2"
H A Dbug71018.phpt5 class T1 {
19 class T2 extends T1 {}
21 $Prop1 = new ReflectionProperty(T1::class, 'data');
26 $Prop1->setValue(\T1::class, "world");
33 T1::$data = "world";
/PHP-7.0/Zend/tests/traits/
H A Dbug61052.phpt5 trait T1 {
6 function foo(){ echo "T1\n"; }
12 use T1, T2 {
13 T1::foo insteadof T1;
18 Fatal error: Inconsistent insteadof definition. The method foo is to be used from T1, but T1 is als…
H A Dbug61998.phpt6 use T1 {
15 trait T1 {
17 echo "From T1\n";
31 use T1 {
50 $f->newFunc(); //from T1
54 $b->newFunc(); //from T1
61 From T1
63 From T1
H A Dlanguage015.phpt5 trait T1 {
6 function foo() {echo "T1\n";}
12 use T1 {
13 T2::foo insteadof T1;
H A Dlanguage016.phpt5 trait T1 {
6 function foo() {echo "T1\n";}
12 use T1 {
13 T1::foo insteadof T2;
H A Dlanguage018.phpt5 trait T1 {
9 use T1 {
10 T1::foo as abstract;
H A Dlanguage019.phpt5 trait T1 {
9 use T1 {
10 T1::foo as final;
H A Dlanguage017.phpt5 trait T1 {
6 function foo() {echo "T1\n";}
12 use T1 {
H A Dbug60217a.phpt6 trait T1 {
15 use T1, T2;
H A Dflattening001.phpt7 trait T1 {
20 use T1;
/PHP-7.0/Zend/tests/
H A Dbug55086.phpt7 trait T1 {
17 use N1\T1;
20 use T1, T2 {
21 T1::hello insteadof T2;
22 T1::hello as foo;
H A Dbug69174.phpt7 use T1, T2 {
8 T1::foo insteadof T2;
9 T1::bar insteadof T2;
H A Dbug55825.phpt5 trait T1 {
11 class C { use T1; }
H A Dbug70156.phpt5 trait T1 {
20 use T1 {
H A Dbug64239_2.phpt6 use T1;
17 trait T1 {
/PHP-7.0/Zend/tests/traits/bugs/
H A Dalias01.phpt5 trait T1 {
11 use T1 { m1 as a1; }
/PHP-7.0/ext/openssl/tests/
H A Dbug64802.pem34 OTVNvj5VtMghvzu68PpzKl1VjlOR4Ej9NCwh1dUjNKEoTPzvpehXsIZ7jHSpX/T1
/PHP-7.0/Zend/tests/assert/
H A Dexpect_015.phpt99 use T1, T2 {
100 T1::foo insteadof foo;
248 use T1, T2 {
249 T1::foo insteadof foo;
/PHP-7.0/ext/hash/
H A Dhash_sha.c484 php_hash_uint32 x[16], T1, T2, W[64]; in SHA256Transform() local
498 T1 = h + SHA256_F3(e) + SHA256_F0(e,f,g) + SHA256_K[i] + W[i]; in SHA256Transform()
500 h = g; g = f; f = e; e = d + T1; 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
808 T1 = h + SHA512_F3(e) + SHA512_F0(e,f,g) + SHA512_K[i] + W[i]; in SHA512Transform()
810 h = g; g = f; f = e; e = d + T1; in SHA512Transform()
811 d = c; c = b; b = a; a = T1 + T2; in SHA512Transform()
/PHP-7.0/ext/phar/tests/zip/
H A Dbug48791.phpt14T1" style:family="text"><style:text-properties style:font-name="Arial"/></style:style><text:list-s…
/PHP-7.0/ext/standard/
H A Dcrypt_sha256.c163 uint32_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha256_process_block() local
168 e = d + T1; in sha256_process_block()
172 a = T1 + T2; in sha256_process_block()
H A Dcrypt_sha512.c190 uint64_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha512_process_block() local
195 e = d + T1; in sha512_process_block()
199 a = T1 + T2; in sha512_process_block()
/PHP-7.0/ext/pcre/pcrelib/testdata/
H A Dtestinput5608 /\sxxx\s/8T1
612 /\S \S/8T1

Completed in 32 milliseconds

12