Home
last modified time | relevance | path

Searched refs:X (Results 1 – 25 of 541) sorted by relevance

12345678910>>...22

/php-src/ext/standard/tests/math/
H A Datan2_basic.phpt49 Y:23 X:1 float(1.5273454314034)
50 Y:23 X: float(1.5707963267949)
150 Y: X:23 float(0)
152 Y: X:23.45 float(0)
154 Y: X:23 float(0)
155 Y: X:23 float(0)
156 Y: X:23 float(0)
157 Y: X:23.45 float(0)
158 Y: X:2.345e1 float(0)
159 Y: X:1 float(0)
[all …]
H A Dhypot_basic.phpt65 Y:23 X: float(23)
87 Y:-23 X: float(23)
153 Y:23 X: float(23)
175 Y:23 X: float(23)
197 Y:23 X: float(23)
263 Y:1 X: float(1)
265 Y: X:33 float(33)
273 Y: X:39 float(39)
275 Y: X:31 float(31)
283 Y: X:1 float(1)
[all …]
/php-src/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-64.macros515 X##ba = Y##ba; \
516 X##be = Y##be; \
517 X##bi = Y##bi; \
518 X##bo = Y##bo; \
519 X##bu = Y##bu; \
520 X##ga = Y##ga; \
521 X##ge = Y##ge; \
522 X##gi = Y##gi; \
523 X##go = Y##go; \
524 X##gu = Y##gu; \
[all …]
/php-src/Zend/tests/
H A Dns_037.phpt5 namespace X;
6 use X as Y;
7 class X {
17 new X();
18 new Y\X();
19 new \X\X();
20 X::bar();
22 \X\X::bar();
23 echo X::C;
25 echo \X\X::C;
[all …]
H A Dns_020.phpt5 namespace X;
6 use X as Y;
11 \X\foo();
13 \X\foo();
16 X\foo
17 X\foo
18 X\foo
19 X\foo
/php-src/sapi/cgi/tests/
H A D011.phpt29 header("X-Foo: Bar");
32 header("X-Foo: Bar");
33 header("X-Bar: Baz");
37 header("X-Foo: Bar");
41 header("X-Foo: Bar");
67 X-Powered-By: PHP/%s
87 X-Foo: Bar
98 X-Bar: Baz
108 X-Foo: Bar
120 X-Foo: Bar
[all …]
/php-src/Zend/tests/type_declarations/intersection_types/variance/
H A Dvalid3.phpt6 interface X {}
10 class TestParent implements X, Y, Z {}
14 public X&Y $prop;
16 public function method1(X&Y&Z $a): X&Y {}
17 public function method2(X&Y $a): X {}
20 public X&Y $prop;
22 public function method1(X&Y $a): X&Y&Z {}
23 public function method2(X $a): X&Y {}
/php-src/ext/reflection/tests/
H A DReflectionMethod_getDocComment_property_list.phpt8 class X {
21 $reflection = new ReflectionProperty('\X', 'x');
22 echo 'X::x', PHP_EOL;
25 $reflection = new ReflectionProperty('\X', 'y');
26 echo 'X::y', PHP_EOL;
29 $reflection = new ReflectionProperty('\X', 'z');
30 echo 'X::z', PHP_EOL;
34 X::x
38 X::y
40 X::z
/php-src/ext/phar/tests/files/
H A Dfrontcontroller8.phar7 ������������������a.phps���kXX���
8X?���ק�7����������a.jpg���kXX�����b�����������a.php���kXX���l�`������� ���fronk.gronk…
/php-src/ext/phar/tests/cache_list/files/
H A Dfrontcontroller8.phar7 ������������������a.phps����WX���
8X?���ק�7����������a.jpg����WX�����b�����������a.php����WX���l�`������� ���fronk.gronk…
/php-src/ext/standard/tests/general_functions/
H A Dbug60227_1.phpt5 header("X-Foo1: a");
6 header("X-Foo2: b\n ");
7 header("X-Foo3: c\r\n ");
8 header("X-Foo4: d\r ");
9 header("X-Foo5: e\rSet-Cookie: ID=123");
16 X-Foo1: a
17 X-Foo2: b
18 X-Foo3: c
19 X-Foo4: d
/php-src/Zend/tests/type_declarations/union_types/variance/
H A Dvalid.phpt6 class X {}
7 class Y extends X {}
10 public X|Y $prop;
15 public function method3(Y|B $a): X|A {}
16 public function method4(Traversable|X $a): iterable|X {}
19 public X $prop;
24 public function method3(A|X $a): B|Y {}
25 public function method4(iterable|X $a): Traversable|X {}
/php-src/ext/iconv/tests/
H A Dbug55146.phpt9 X-Header-One: H4sIAAAAAAAAA+NgFlsCAAA=
10 X-Header-Two: XtLePq6GTMn8G68F0
15 X-Header-One: =
16 X-Header-Two: XtLePq6GTMn8G68F0
22 ["X-Header-One"]=>
24 ["X-Header-Two"]=>
28 ["X-Header-One"]=>
30 ["X-Header-Two"]=>
/php-src/Zend/tests/type_declarations/dnf_types/variance/
H A Dvalid2.phpt8 interface X {}
11 public X|(A&B) $prop;
12 public function foo(X|(A&B) $v): X|(A&B) {}
16 public (B&A)|X $prop;
17 public function foo((B&A)|X $v): (B&A)|X {}
/php-src/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload_error6.phpt9 public function method(): X {}
17 } else if ($class == 'X') {
18 class X {
19 public function method(): X {}
21 var_dump(new X);
23 class Y extends X {
36 object(X)#2 (0) {
39 Fatal error: Could not check compatibility between Y::method(): Unknown and X::method(): X, because…
/php-src/Zend/tests/type_declarations/dnf_types/
H A Ddnf_intersection_and_single.phpt6 interface X {}
9 class A implements X, Y {}
14 public (X&Y)|int $prop1;
15 public int|(X&Y) $prop2;
16 public (X&Y)|B $prop3;
17 public B|(X&Y) $prop4;
19 public function foo1((X&Y)|int $v): (X&Y)|int {
23 public function foo2(int|(X&Y) $v): int|(X&Y) {
27 public function bar1(B|(X&Y) $v): B|(X&Y) {
31 public function bar2((X&Y)|B $v): (X&Y)|B {
[all …]
H A Ddnf_intersection_and_null.phpt6 interface X {}
9 class A implements X, Y {}
13 public (X&Y)|null $prop1;
14 public null|(X&Y) $prop2;
16 public function foo1((X&Y)|null $v): (X&Y)|null {
20 public function foo2(null|(X&Y) $v): null|(X&Y) {
70 Test::foo1(): Argument #1 ($v) must be of type (X&Y)|null, C given, called in %s on line %d
71 Test::foo2(): Argument #1 ($v) must be of type (X&Y)|null, C given, called in %s on line %d
72 Cannot assign C to property Test::$prop1 of type (X&Y)|null
73 Cannot assign C to property Test::$prop2 of type (X&Y)|null
H A Ddnf_2_intersection.phpt7 interface X {}
11 class A implements X, Y {}
15 function foo1((X&Y)|(W&Z) $v): (X&Y)|(W&Z) {
18 function foo2((W&Z)|(X&Y) $v): (W&Z)|(X&Y) {
22 function bar1(): (X&Y)|(W&Z) {
25 function bar2(): (W&Z)|(X&Y) {
62 bar1(): Return value must be of type (X&Y)|(W&Z), C returned
63 bar2(): Return value must be of type (W&Z)|(X&Y), C returned
/php-src/ext/standard/tests/class_object/
H A Dget_class_methods_basic_002.phpt19 echo "Accessing X from C:\n";
34 echo "Accessing X from D:\n";
39 class X {
45 echo "Accessing C from X:\n";
49 echo "Accessing X from X:\n";
59 X::testFromX();
103 Accessing X from C:
136 Accessing X from D:
143 Accessing C from X:
150 Accessing D from X:
[all …]
/php-src/ext/reflection/tests/types/
H A Ddnf_types_with_null.phpt23 public (X&Y)|null $prop;
48 Type X&Y is ReflectionIntersectionType:
50 Name: X
51 String: X
62 Type (X&Y)|null is ReflectionUnionType:
64 Type X&Y is ReflectionIntersectionType:
66 Name: X
67 String: X
72 Type (X&Y)|null is ReflectionUnionType:
76 Name: X
[all …]
H A Dunion_types.phpt66 Name: X
67 String: X
86 Name: X
87 String: X
108 Name: X
109 String: X
130 Name: X
131 String: X
141 Name: X
142 String: X
[all …]
H A Ddnf_types.phpt23 public (X&Y)|Countable $prop;
47 Type X&Y is ReflectionIntersectionType:
48 Name: X
49 String: X
64 Type (X&Y)|Countable is ReflectionUnionType:
65 Type X&Y is ReflectionIntersectionType:
66 Name: X
67 String: X
76 Type X&Y is ReflectionIntersectionType:
77 Name: X
[all …]
/php-src/ext/mbstring/tests/
H A Dgh10648.phpt16 …'JIS X 0208 character' => '1b244242641b2842', // '鯛' in JIS and ISO-2022-JP, included in JIS X 0208
17 'JIS X 0212 character' => '1b2428446a591b2842', // '鮋' in JIS, included in JIS X 0212
18 …'JIS X 0213 character' => '1b2428507d4c1b2842', // '��' in ISO-2022-JP-2004, included in JIS X 0213
57 JIS X 0201 7bit kana with escape sequence
67 JIS X 0201 7bit kana with SO/SI
77 JIS X 0201 8bit kana
87 JIS X 0201 7bit kana with SO and ESC
97 JIS X 0201 7bit kana with ESC and SI
107 JIS X 0208 character
117 JIS X 0212 character
[all …]
/php-src/ext/tokenizer/tests/
H A Dtoken_get_all_TOKEN_PARSE_001.phpt8 X::continue;
9 X::$continue;
11 X::continue();
13 X::class;
16 class X {
36 L2: T_STRING X
40 L3: T_STRING X
48 L5: T_STRING X
60 L7: T_STRING X
71 L10: T_STRING X
/php-src/Zend/tests/type_declarations/intersection_types/
H A Dmissing_interface_intersection_type.phpt6 interface X {}
10 class A implements X {}
13 public X&Y $intersect;
16 function foo(): X&Y {
20 function bar(X&Y $o): void {
48 foo(): Return value must be of type X&Y, A returned
49 Cannot assign A to property Collection::$intersect of type X&Y
50 bar(): Argument #1 ($o) must be of type X&Y, A given, called in %s on line %d

Completed in 61 milliseconds

12345678910>>...22