Home
last modified time | relevance | path

Searched refs:x (Results 201 – 225 of 1557) sorted by relevance

12345678910>>...63

/PHP-8.0/Zend/tests/type_declarations/variance/
H A Dabstract_constructor.phpt8 abstract function __construct(X $x);
11 function __construct(object $x) {}
14 function __construct(Y $x) {}
18 Fatal error: Could not check compatibility between C::__construct(Y $x) and A::__construct(X $x), b…
/PHP-8.0/ext/standard/tests/assert/
H A Dbug80290.phpt10 $x = 'x';
11 assert(false, 'Dynamic message: ' . $x);
15 string(18) "Dynamic message: x"
17 Fatal error: Uncaught AssertionError: Dynamic message: x in %s:%d
/PHP-8.0/ext/opcache/tests/jit/
H A Dassign_dim_004.phpt11 function offsetExists($x): bool {}
12 function offsetGet($x): mixed {}
13 function offsetSet($x, $y): void {
14 echo "offsetSet($x, $y)\n";
16 function offsetUnset($x): void {}
H A Dfetch_dim_r_004.phpt30 $x="a";
32 foo($x.$y);
33 foo("2x");
34 $x=2;
35 $y="x";
36 foo($x.$y);
58 Warning: Illegal string offset "2x" in %sfetch_dim_r_004.php on line 5
61 Warning: Illegal string offset "2x" in %sfetch_dim_r_004.php on line 5
H A Dinc_001.phpt15 $x = 1;
16 $x += 0;
17 ++$x; // mem -> mem
18 var_dump($x);
H A Dinc_009.phpt15 $x = 1.0;
16 $x += 0;
17 ++$x; // mem -> mem
18 var_dump($x);
H A Dbug80839.phpt16 $x = $str . str_repeat($pad, 15); // $x now contains "yyyyyyyyyyyyyyy"
17 var_dump($x);
22 // $x has been changed ????
23 // $x contains what was echoed in the function 'info'
24 var_dump($x);
H A Dinc_003.phpt15 $x = 1;
16 $x += 0;
17 ++$x; // mem -> reg
18 return $x;
H A Dinc_011.phpt15 $x = 1.0;
16 $x += 0;
17 ++$x; // mem -> reg
18 return $x;
/PHP-8.0/Zend/tests/
H A Dunset_cv03.phpt5 $x = "ok\n";
6 echo $x;
8 echo $x;
13 Warning: Undefined variable $x in %s on line %d
H A Dunset_cv04.phpt6 $x = "ok\n";
7 echo $x;
9 echo $x;
16 Warning: Undefined variable $x in %s on line %d
H A Dtemporary_cleaning_001.phpt11 $x = 2;
13 while ($x-- && new stdClass) {
14 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
/PHP-8.0/Zend/tests/type_declarations/union_types/
H A Dtype_checking_weak.phpt48 42, 42.0, INF, "42", "42.0", "42x", "x", "",
101 "42x" => true
102 "x" => true
117 "42x" => true
118 "x" => true
133 "42x" => "42x"
134 "x" => "x"
149 "42x" => "42x"
150 "x" => "x"
181 "42x" => "42x"
[all …]
/PHP-8.0/ext/standard/tests/strings/
H A Dbug27278.phpt12 $x="02";
13 var_dump($x);
14 foo($x);
15 var_dump($x);
H A Dvsprintf_basic9.phpt9 $format1 = "%x";
10 $format2 = "%x %x";
11 $format3 = "%x %x %x";
/PHP-8.0/ext/standard/
H A Dsha1.c114 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
115 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
116 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
117 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
121 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
125 #define W(i) ( tmp=x[(i-3)&15]^x[(i-8)&15]^x[(i-14)&15]^x[i&15], \
126 (x[i&15]=ROTATE_LEFT(tmp, 1)) )
257 SHA1Decode(x, block, 64);
260 FF(a, b, c, d, e, x[0]); /* 1 */
261 FF(e, a, b, c, d, x[1]); /* 2 */
[all …]
/PHP-8.0/ext/intl/tests/
H A Dspoofchecker_003.phpt10 $x = new Spoofchecker();
13 $x->setAllowedLocales('en_US');
14 var_dump($x->isSuspicious($korean));
18 $x->setAllowedLocales('en_US, ko_KR');
19 var_dump($x->isSuspicious($korean));
H A Dspoofchecker_004.phpt11 $x = new Spoofchecker();
13 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
14 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
17 $x->setChecks(Spoofchecker::MIXED_SCRIPT_CONFUSABLE |
20 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
21 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
H A Dspoofchecker_005.phpt11 $x = new Spoofchecker();
13 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
14 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
17 $x->setChecks(Spoofchecker::MIXED_SCRIPT_CONFUSABLE |
20 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
21 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
/PHP-8.0/ext/tokenizer/tests/
H A Dtoken_get_all_TOKEN_PARSE_001.phpt10 $x->$continue;
12 $x->continue();
14 $x->__halt_compiler();
18 public $x = self::CONTINUE + 1;
44 L4: T_VARIABLE $x
54 L6: T_VARIABLE $x
64 L8: T_VARIABLE $x
79 L12: T_VARIABLE $x
/PHP-8.0/ext/xmlwriter/tests/
H A Dbug41326.phpt28 $xw->startElementNS('test', 'test', 'urn:x-test:');
30 $xw->writeElementNS(null, 'bar', 'urn:x-test:', '');
31 $xw->writeElementNS(null, 'bar', 'urn:x-test:', NULL);
32 $xw->writeElementNS(null, 'bar', 'urn:x-test:');
48 <test:test xmlns:test="urn:x-test:">
50 <bar xmlns="urn:x-test:"></bar>
51 <bar xmlns="urn:x-test:"/>
52 <bar xmlns="urn:x-test:"/>
/PHP-8.0/ext/openssl/tests/
H A Dopenssl_spki_new_basic.phpt42 return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', mt_rand(0, 0xffff),
/PHP-8.0/ext/ffi/tests/
H A D003.phpt11 struct _a {int x;};
13 struct _b {int x;};
17 struct _c {int x;};
19 struct _d {int x;};
46 ["x"]=>
50 ["x"]=>
54 ["x"]=>
58 ["x"]=>
/PHP-8.0/ext/filter/tests/
H A D048.phpt25 $s = sprintf("%x", PHP_INT_MAX);
26 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
29 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
31 $s = sprintf("%x", ~0);
32 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
35 var_dump(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX)));
/PHP-8.0/ext/gd/libgd/
H A Dgd_color_match.c15 int x,y; in gdImageColorMatch() local
34 for (x=0; x<im1->sx; x++) { in gdImageColorMatch()
36 color = im2->pixels[y][x]; in gdImageColorMatch()
37 rgb = im1->tpixels[y][x]; in gdImageColorMatch()

Completed in 31 milliseconds

12345678910>>...63