Home
last modified time | relevance | path

Searched refs:white (Results 1 – 25 of 90) sorted by relevance

1234

/PHP-7.4/ext/gd/tests/
H A Dbug24594.phpt13 $white = imagecolorallocate($tile,255,255,255);
15 $white = imagecolorallocate($base,255,255,255);
37 $res .= imagecolorat($base,11,12)==$white?'1':'0';
38 $res .= imagecolorat($base,12,13)==$white?'1':'0';
39 $res .= imagecolorat($base,13,14)==$white?'1':'0';
40 $res .= imagecolorat($base,14,15)==$white?'1':'0';
41 $res .= imagecolorat($base,15,16)==$white?'1':'0';
42 $res .= imagecolorat($base,16,17)==$white?'1':'0';
52 imagefilledrectangle($base,0,0,149,149,$white);
64 $res .= imagecolorat($base,11,12)==$white?'1':'0';
[all …]
H A Dimagesetclip_basic.phpt12 $white = imagecolorallocate($im, 255, 255, 255);
14 imageline($im, 0,0, 99,99, $white);
21 var_dump(imagecolorat($im, 9,9) !== $white);
22 var_dump(imagecolorat($im, 90,90) !== $white);
H A Dbug67325.phpt2 Bug #67325 (imagetruecolortopalette: white is duplicated in palette)
18 $white = 0;
22 $white++;
25 var_dump($white);
H A Dimagefilledellipse_basic.phpt12 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
14 //create an ellipse and fill it with white color
15 imagefilledellipse($image, 50, 50, 40, 30, $white);
H A Dbug51671.phpt12 $white = imagecolorallocate($im, 255, 255, 255);
13 imagefill($im, 0, 0, $white);
16 if (($c = imagecolorat($im, 0, $iy)) != $white) {
H A Dbug73281.phpt13 $white = imagecolorallocate($src, 255, 255, 255);
14 imagefilledrectangle($src, 0,0, 99,99, $white);
23 $white = imagecolorallocate($src, 255, 255, 255);
24 imagefilledrectangle($src, 0,0, 99,99, $white);
H A Dimagearc_basic.phpt15 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
17 //create an arc with white color
18 imagearc($image, 50, 50, 30, 30, 0, 180, $white);
H A Dbug60160.phpt12 $white = imagecolorallocate($im, 255, 255, 255);
13 imagefill($im, 0, 0, $white);
17 if (($c = imagecolorat($im, $ix, $iy)) != $white) {
H A Dimagearc_variation1.phpt15 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
17 //create an arc with white color
18 imagearc($image, 50, 50, 30, 30, 0, -90, $white);
H A Dimagearc_variation2.phpt15 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
17 //create an arc with white color
18 imagearc($image, 50, 50, 30, 30, -90, 0, $white);
H A Dbug70102.phpt17 $white = imagecolorallocate($im, 255, 255, 255);
18 var_dump($white & 0xffffff);
19 imagefilledrectangle($im, 0, 0, 7, 7, $white);
H A Dbug73291.phpt11 $white = imagecolorallocate($src, 255, 255, 255);
12 imagefilledrectangle($src, 0, 0, 254, 254, $white);
20 $dst = imagecropauto($src, IMG_CROP_THRESHOLD, $threshold, $white);
H A Dimagefilledarc_basic.phpt18 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
20 //create an arc and fill it with white color
21 imagefilledarc($image, 50, 50, 30, 30, 0, 90, $white, IMG_ARC_PIE);
H A Dimagefilledarc_variation1.phpt18 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
20 //create an arc and fill it with white color
21 imagefilledarc($image, 50, 50, 30, 30, 0, -25, $white, IMG_ARC_PIE);
H A Dimagefilledarc_variation2.phpt18 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
20 //create an arc and fill it with white color
21 imagefilledarc($image, 50, 50, 30, 30, -25, 25, $white, IMG_ARC_PIE);
H A Dimagesetthickness_basic.phpt14 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
17 // Set the background to be white
18 imagefilledrectangle($image, 0, 0, 299, 99, $white);
H A Dimagecolordeallocate_basic.phpt14 $white = imagecolorallocate($image, 255, 255, 255);
15 $result = imagecolordeallocate($image, $white);
H A Dimagepolygon_aa.phpt12 $white = imagecolorallocate($im, 255, 255, 255);
14 imagefilledrectangle($im, 0,0, 99,99, $white);
H A Dimagebmp_basic.phpt13 $white = imagecolorallocate($im, 255, 255, 255);
14 imageline($im, 10,10, 89,89, $white);
H A Dimagechar_basic.phpt13 $white = imagecolorallocate($image, 255,255,255);
15 $result = imagechar($image, 1, 5, 5, 'C', $white);
H A Dimagecharup_basic.phpt13 $white = imagecolorallocate($image, 255,255,255);
15 $result = imagecharup($image, 1, 5, 5, 'C', $white);
/PHP-7.4/ext/standard/tests/strings/
H A Dltrim_basic.phpt18 echo "\n-- Trim string with all white space characters --\n";
24 echo "\n-- Trim some non-white space characters from a string --\n";
27 echo "\n-- Trim some non-white space characters from a string suing a character range --\n";
39 -- Trim string with all white space characters --
45 -- Trim some non-white space characters from a string --
48 -- Trim some non-white space characters from a string suing a character range --
H A Drtrim_basic.phpt20 echo "\n-- Trim string with all white space characters --\n";
26 echo "\n-- Trim some non-white space characters from a string --\n";
29 echo "\n-- Trim some non-white space characters from a string using a character range --\n";
40 -- Trim string with all white space characters --
46 -- Trim some non-white space characters from a string --
49 -- Trim some non-white space characters from a string using a character range --
H A Dtrim_basic.phpt17 echo "\n-- Trim string with all white space characters --\n";
23 echo "\n-- Trim some non-white space characters from a string --\n";
34 -- Trim string with all white space characters --
40 -- Trim some non-white space characters from a string --
H A Dchunk_split_variation12.phpt130 white space charsr to checkThis checks and
131 white space chars with hereThis checks and
132 white space charsdoc endingThis checks and
133 white space chars.This contThis checks and
134 white space charsains,
136 white space charsi@! ch@r$ This checks and
137 white space chars__with wroThis checks and
138 white space charsng \k escaThis checks and
139 white space charspe char 22This checks and
140 white space chars2.This checks and
[all …]

Completed in 23 milliseconds

1234