/PHP-8.2/ext/gd/tests/ |
H A D | bug24594.phpt | 9 $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 D | imagesetclip_basic.phpt | 10 $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 D | bug67325.phpt | 2 Bug #67325 (imagetruecolortopalette: white is duplicated in palette) 19 $white = 0; 23 $white++; 26 var_dump($white);
|
H A D | imagefilledellipse_basic.phpt | 10 $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 D | bug51671.phpt | 10 $white = imagecolorallocate($im, 255, 255, 255); 11 imagefill($im, 0, 0, $white); 14 if (($c = imagecolorat($im, 0, $iy)) != $white) {
|
H A D | bug73281.phpt | 14 $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 D | bug60160.phpt | 10 $white = imagecolorallocate($im, 255, 255, 255); 11 imagefill($im, 0, 0, $white); 15 if (($c = imagecolorat($im, $ix, $iy)) != $white) {
|
H A D | imagearc_basic.phpt | 13 $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 D | imagearc_variation1.phpt | 13 $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 D | imagearc_variation2.phpt | 13 $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 D | bug70102.phpt | 18 $white = imagecolorallocate($im, 255, 255, 255); 19 var_dump($white & 0xffffff); 20 imagefilledrectangle($im, 0, 0, 7, 7, $white);
|
H A D | bug73291.phpt | 9 $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 D | imagefilledarc_basic.phpt | 19 $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 D | imagefilledarc_variation1.phpt | 19 $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 D | imagefilledarc_variation2.phpt | 19 $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 D | imagesetthickness_basic.phpt | 15 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); 18 // Set the background to be white 19 imagefilledrectangle($image, 0, 0, 299, 99, $white);
|
H A D | imagecolordeallocate_basic.phpt | 12 $white = imagecolorallocate($image, 255, 255, 255); 13 $result = imagecolordeallocate($image, $white);
|
H A D | imagepolygon_aa.phpt | 10 $white = imagecolorallocate($im, 255, 255, 255); 12 imagefilledrectangle($im, 0,0, 99,99, $white);
|
H A D | imagefill_1.phpt | 14 $white = imagecolorallocate($im, 255,255,255); 19 imagefill($im, 0,0,$white + 3);
|
H A D | imagechar_basic.phpt | 11 $white = imagecolorallocate($image, 255,255,255); 13 $result = imagechar($image, 1, 5, 5, 'C', $white);
|
H A D | imagecharup_basic.phpt | 11 $white = imagecolorallocate($image, 255,255,255); 13 $result = imagecharup($image, 1, 5, 5, 'C', $white);
|
/PHP-8.2/ext/standard/tests/strings/ |
H A D | ltrim_basic.phpt | 13 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 D | rtrim_basic.phpt | 15 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 D | trim_basic.phpt | 12 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 D | chunk_split_variation12.phpt | 40 // 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 …]
|