Home
last modified time | relevance | path

Searched refs:y (Results 51 – 75 of 634) sorted by relevance

12345678910>>...26

/PHP-8.1/ext/gd/tests/
H A Dbug49600.phpt19 $y = imagettfbbox(32, 0, "$cwd/Tuffy.ttf", $c);
20 if ( abs($x[0] - $y[0]) > 1
21 || abs($x[2] - $y[2]) > 1
22 || abs($x[4] - $y[4]) > 1
23 || abs($x[6] - $y[6]) > 1 ) {
26 var_dump($y);
H A Dbug66356.phpt10 var_dump(imagecrop($img, array("x" => "a", "y" => 0, "width" => 10, "height" => 10)));
12 $arr = array("x" => "a", "y" => "12b", "width" => 10, "height" => 10);
17 var_dump(imagecrop($img, array("x" => 0, "y" => 0, "width" => -1, "height" => 10)));
20 var_dump(imagecrop($img, array("x" => -20, "y" => -20, "width" => 10, "height" => 10)));
23 var_dump(imagecrop($img, array("x" => 0x7fffff00, "y" => 0, "width" => 10, "height" => 10)));
26 var_dump(imagecrop($img, array("x" => 0, "y" => 0, "width" => 65535, "height" => 65535)));
36 [y] => 12b
H A Dbug73281.phpt19 list($x, $y) = $coordinate;
20 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
29 list($x, $y) = $coordinate;
30 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
/PHP-8.1/ext/opcache/tests/jit/
H A Dassign_051.phpt12 $arr = $a[] = (y);
13 $arr = y;
14 $c = $y = $arr = &y($c);
19 Fatal error: Uncaught Error: Undefined constant "y" in %sassign_051.php:3
H A Dgh12382.phpt10 for ($y = 0; $y < 21; ++$y) {
15 && 0 === $array[$y][$x + 7]
19 && 0 === $array[$y][$x - 1]
H A Dassign_dim_008.phpt11 $arr = $a[] = (y);
12 $arr = y;
13 $c = $y = $arr[] = y($c);
H A Dfetch_dim_r_013.phpt11 $y = 0; $tokens = [];
13 $tokens[$y] > $tokens[$y][] = $y;
H A Dfetch_dim_r_014.phpt11 $s =+ $y;
12 $tokenthiss[$i=$s][] = $y = $y;
13 $tokenthiss[$i][$i] + $y;
H A Dgh10271.phpt34 $y = $sol['Y']['k']*$tang['KSI'] + $sol['Y']['e']*$tang['ETA'] + $sol['Y'][1];
35 printf("In;%.12f;%.12f;%.12f;%.12f;",$x,$y,$sol['xc'],$sol['yc']);
37 $y = $sol['yc']*($y+1);
38 printf("Out;%.12f;%.12f\n",$x,$y);
41 return ['x'=>$x,'y'=>$y];
H A Dassign_dim_007.phpt11 $GLOBALS['x'] = $GLOBALS['y'];
17 $y = false;
18 x($y);
19 var_dump($x,$y);
/PHP-8.1/ext/opcache/tests/opt/
H A Dinference_014.phpt9 function y() {
11 $x[y] &= y;
13 $x[""]=y;
H A Dinference_015.phpt11 $x[y.y] &= y;
13 $x[""] = y;
H A Dsccp_034.phpt9 is_array(["$y $y"]);
13 Warning: Undefined variable $y in %ssccp_034.php on line 2
15 Warning: Undefined variable $y in %ssccp_034.php on line 2
/PHP-8.1/ext/reflection/tests/
H A Dnew_in_attributes.phpt8 public function __construct(public $x, public $y) {}
25 var_dump($obj1->y !== $obj2->y);
28 #[MyAttribute(y: new stdClass, x: null)]
50 ["y"]=>
57 ["y"]=>
66 ["y"]=>
H A DReflectionMethod_getDocComment_property_list.phpt15 $y = 'y',
25 $reflection = new ReflectionProperty('\X', 'y');
26 echo 'X::y', PHP_EOL;
38 X::y
/PHP-8.1/Zend/tests/
H A Dbug70124.phpt16 echo base_convert([array_search(chr(48),chr(48),chr(48),chr(48),chr(48),a::y("test"))],chr(48));
24 … echo base_convert([array_search(chr(48),chr(48),chr(48),chr(48),chr(48),$a->y("test"))],chr(48));
30 … echo base_convert([array_search(chr(48),chr(48),chr(48),chr(48),chr(48),\bar\y("test"))],chr(48));
36 echo base_convert([array_search(chr(48),chr(48),chr(48),chr(48),chr(48),y("test"))],chr(48));
44 string(31) "Call to undefined method A::y()"
45 string(31) "Call to undefined method A::y()"
46 string(34) "Call to undefined function bar\y()"
47 string(30) "Call to undefined function y()"
H A Doss_fuzz_60011_1.phpt5 [&$y]=$y->y?->y;
H A Doss_fuzz_60011_2.phpt5 [&$y]=$y?->y->y;
H A Dtemporary_cleaning_001.phpt12 $y = new stdClass;
14 $r = [$x] + ($y ? ((array) $x) + [2] : ops());
15 $y = (array) $y;
/PHP-8.1/ext/gd/libgd/
H A Dgd_gd.c168 int x, y; in gdImageCreateFromGdCtx() local
181 for (y = 0; y < sy; y++) { in gdImageCreateFromGdCtx()
187 im->tpixels[y][x] = pix; in gdImageCreateFromGdCtx()
191 for (y = 0; y < sy; y++) { in gdImageCreateFromGdCtx()
199 im->pixels[y][x] = ch; in gdImageCreateFromGdCtx()
249 int x, y; in _gdImageGd() local
253 for (y = 0; y < im->sy; y++) { in _gdImageGd()
257 gdPutInt(im->tpixels[y][x], out); in _gdImageGd()
259 gdPutC((unsigned char) im->pixels[y][x], out); in _gdImageGd()
H A Dgd_color_match.c15 int x,y; in gdImageColorMatch() local
35 for( y=0; y<im1->sy; y++ ) { in gdImageColorMatch()
36 color = im2->pixels[y][x]; in gdImageColorMatch()
37 rgb = im1->tpixels[y][x]; in gdImageColorMatch()
/PHP-8.1/ext/pdo_sqlite/tests/
H A Dbug44327_2.phpt13 $y = $x->fetch();
14 var_dump($y, @$y->queryString);
21 $y = $x->fetch(PDO::FETCH_LAZY);
22 var_dump($y, $y->queryString);
/PHP-8.1/ext/fileinfo/tests/
H A Dbug68819_001.phpt9y--a-------a-----a--a--------a----s--------a-------------a-------a--------a----s--------------a---…
/PHP-8.1/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp936_1.phpt26 $item = "�yԇ���ֹ�·��"; // cp936 string
49 getting basename of %s\�yԇ���ֹ�·��5\�yԇ���ֹ�·��4
50 string(15) "�yԇ���ֹ�·��4"
52 string(%d) "%s\�yԇ���ֹ�·��5\�yԇ���ֹ�·��4"
/PHP-8.1/ext/opcache/tests/
H A Dbug75687.phpt12 function x($y)
14 if (is_array($y)) {
15 $z = is_array($y) ? array() : array($y);

Completed in 58 milliseconds

12345678910>>...26