Home
last modified time | relevance | path

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

1234

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

Completed in 30 milliseconds

1234