Home
last modified time | relevance | path

Searched refs:x (Results 476 – 500 of 1790) sorted by relevance

1...<<11121314151617181920>>...72

/PHP-8.3/ext/standard/tests/strings/
H A Dsscanf_basic8.phpt9 $format1 = "%x %x %x %x %x %x";
/PHP-8.3/ext/intl/tests/
H A Dlocale_get_region.phpt48 'de-CH-x-phonebk',
49 'az-Arab-x-AZE-derbend',
54 'x-whatever',
55 'qaa-Qaaa-QM-x-southern',
61 'zh-CN-a-myExt-x-private',
110 de-CH-x-phonebk: region='CH'
111 az-Arab-x-AZE-derbend: region='%r(X)?%r'
114 x-whatever: region=''
115 qaa-Qaaa-QM-x-southern: region='QM'
119 zh-CN-a-myExt-x-private: region='CN'
H A Dlocale_get_script.phpt47 'de-CH-x-phonebk',
48 'az-Arab-x-AZE-derbend',
53 'x-whatever',
54 'qaa-Qaaa-QM-x-southern',
60 'zh-CN-a-myExt-x-private',
108 de-CH-x-phonebk: script=''
109 az-Arab-x-AZE-derbend: script='Arab'
112 x-whatever: script=''
113 qaa-Qaaa-QM-x-southern: script='Qaaa'
117 zh-CN-a-myExt-x-private: script=''
/PHP-8.3/ext/gd/libgd/
H A Dgd_webp.c46 int x, y; in gdImageCreateFromWebpCtx() local
89 for (x = 0; x < width; x++) { in gdImageCreateFromWebpCtx()
94 im->tpixels[y][x] = gdTrueColorAlpha(r, g, b, a); in gdImageCreateFromWebpCtx()
107 int x, y; in gdImageWebpCtx() local
139 for (x = 0; x < gdImageSX(im); x++) { in gdImageWebpCtx()
142 c = im->tpixels[y][x]; in gdImageWebpCtx()
/PHP-8.3/Zend/tests/type_declarations/union_types/
H A Dtype_checking_strict.phpt50 42, 42.0, INF, "42", "42.0", "42x", "x", "",
71 "42x" => Argument ... must be of type int|float, string given
72 "x" => Argument ... must be of type int|float, string given
119 "42x" => Argument ... must be of type int|bool, string given
120 "x" => Argument ... must be of type int|bool, string given
135 "42x" => "42x"
136 "x" => "x"
151 "42x" => "42x"
152 "x" => "x"
183 "42x" => "42x"
[all …]
/PHP-8.3/ext/opcache/tests/jit/
H A Dadd_012.phpt12 $x = 0;
14 $y[$x]++;
15 $y[$x] += 4467793343;
H A Dcmp_004.phpt13 function foo(bool $test, int $x) {
14 if (($test ? $x >= 1 : $x > 1)) {
H A Dassign_op_005.phpt11 $x = "";
12 $a["x{$x}y"] %= 0;
H A Dsend_var_ex_002.phpt11 $x = 0;
12 test(a: $x);
13 var_dump($x);
/PHP-8.3/ext/json/tests/
H A Dbug40503.phpt7 function json_test_show_eq($x, $y) {
8 echo "$x ". ( $x == $y ? "==" : "!=") ." $y\n";
/PHP-8.3/ext/standard/tests/array/
H A Dpacked_001.phpt6 $x = [1,2,3];
7 unset($x[1]);
15 $x,
/PHP-8.3/ext/ffi/tests/
H A D020.phpt12 $p = $ffi->new("struct {int x; const int y;}");
13 $p->x = 1;
20 $p = $ffi->new("struct {const int x; int y;}");
22 $p->x = 1;
28 $p = $ffi->new("const struct {int x; int y;}");
29 $p->x = 1;
67 FFI\Exception: Attempt to assign read-only field 'x'
/PHP-8.3/ext/gd/tests/
H A Dbug43073.phpt36 $x = 100;
41 $bbox = imagettftext($g, 24, (int)$angle, (int)(400+$x), (int)(400+$y), $black, $font, 'ABCDEF');
52 $temp = $cos_t * $x + $sin_t * $y;
53 $y = $cos_t * $y - $sin_t * $x;
54 $x = $temp;
/PHP-8.3/ext/soap/tests/bugs/
H A Dbug39832.phpt19 function Test($x) {
20 return $x->priority;
23 $x = new SoapServer(__DIR__."/bug39832.wsdl");
24 $x->addFunction("Test");
25 $x->handle($HTTP_RAW_POST_DATA);
/PHP-8.3/ext/opcache/tests/
H A Dbug78341.phpt14 $x = $a === null;
15 if ($x) {
16 var_dump($x);
/PHP-8.3/Zend/tests/traits/
H A Dbug74922c.phpt7 public $x = self::X;
10 public $x = self::X;
16 var_dump((new C)->x);
/PHP-8.3/ext/spl/tests/
H A Dbug73029.phpt6 $a = 'C:11:"ArrayObject":19:{x:i:0;r:2;;m:a:0:{}}';
8 $x = $m[2];
13 $a = 'C:11:"ArrayObject":19:0x:i:0;r:2;;m:a:0:{}}';
15 $x = $m[2];
/PHP-8.3/Zend/tests/constexpr/
H A Dnew_self_parent.phpt7 public static function invalid($x = new parent) {
11 public static function method($x = new self, $y = new parent) {
12 var_dump($x, $y);
16 function invalid($x = new self) {}
/PHP-8.3/ext/opcache/tests/opt/
H A Dsccp_008.phpt14 function foo(int $x) {
15 if ($x) {
34 0000 CV0($x) = RECV 1
35 0001 JMPZ CV0($x) 0004
/PHP-8.3/ext/random/tests/01_functions/
H A Drandom_int.phpt8 $x = random_int(10, 100);
9 var_dump($x >= 10 && $x <= 100);
/PHP-8.3/Zend/tests/type_declarations/
H A Dtyped_properties_protected_inheritance_mismatch.phpt6 class A { protected int $x; }
7 class B extends A { protected $x; }
11 Fatal error: Type of B::$x must be int (as in class A) in %s on line %d
/PHP-8.3/Zend/tests/
H A Dbug63882.phpt5 class Test { public $x = 5; }
9 $testobj1->x = $testobj1;
10 $testobj2->x = $testobj2;
H A Dbug75420.1.phpt6 public function __isset($x) { $GLOBALS["name"] = 24; return true; }
7 public function __get($x) { var_dump($x); return 42; }
H A Dbug79784.phpt9 $a[$c] = 'x' ;
11 $a[$c] .= 'x' ;
13 $a[$c][$c] = 'x' ;
/PHP-8.3/ext/standard/tests/file/
H A Dfscanf_variation38.phpt26 $hexa_formats = array( "%x", "%hx", "%lx", "%Lx", " %x", "%x ", "% x", "\t%x", "\n%x", "%4x", "%30x

Completed in 28 milliseconds

1...<<11121314151617181920>>...72