/PHP-7.2/ext/gd/tests/ |
H A D | bug24594.phpt | 13 $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 D | imagesetclip_basic.phpt | 12 $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 D | bug67325.phpt | 2 Bug #67325 (imagetruecolortopalette: white is duplicated in palette) 18 $white = 0; 22 $white++; 25 var_dump($white);
|
H A D | imagefilledellipse_basic.phpt | 12 $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 D | bug51671.phpt | 12 $white = imagecolorallocate($im, 255, 255, 255); 13 imagefill($im, 0, 0, $white); 16 if (($c = imagecolorat($im, 0, $iy)) != $white) {
|
H A D | bug73281.phpt | 13 $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 D | imagearc_basic.phpt | 15 $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 D | bug60160.phpt | 12 $white = imagecolorallocate($im, 255, 255, 255); 13 imagefill($im, 0, 0, $white); 17 if (($c = imagecolorat($im, $ix, $iy)) != $white) {
|
H A D | imagearc_variation1.phpt | 15 $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 D | imagearc_variation2.phpt | 15 $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 D | imagefilledarc_basic.phpt | 18 $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 D | bug70102.phpt | 17 $white = imagecolorallocate($im, 255, 255, 255); 18 var_dump($white & 0xffffff); 19 imagefilledrectangle($im, 0, 0, 7, 7, $white);
|
H A D | imagefilledarc_error1.phpt | 15 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); 17 //create an arc and fill it with white color 18 imagefilledarc($image, 50, 50, 30, 30, 0, 90, $white);
|
H A D | imagefilledarc_variation1.phpt | 18 $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 D | imagefilledarc_variation2.phpt | 18 $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 D | imagesetthickness_basic.phpt | 14 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); 17 // Set the background to be white 18 imagefilledrectangle($image, 0, 0, 299, 99, $white);
|
H A D | imagecolordeallocate_basic.phpt | 14 $white = imagecolorallocate($image, 255, 255, 255); 15 $result = imagecolordeallocate($image, $white);
|
H A D | imagepolygon_aa.phpt | 12 $white = imagecolorallocate($im, 255, 255, 255); 14 imagefilledrectangle($im, 0,0, 99,99, $white);
|
H A D | imagestringup_basic.phpt | 13 $white = imagecolorallocate($image, 255,255,255); 15 $result = imagestringup($image, 1, 5, 25, 'Str', $white);
|
H A D | imagebmp_basic.phpt | 13 $white = imagecolorallocate($im, 255, 255, 255); 14 imageline($im, 10,10, 89,89, $white);
|
H A D | imagechar_basic.phpt | 13 $white = imagecolorallocate($image, 255,255,255); 15 $result = imagechar($image, 1, 5, 5, 'C', $white);
|
/PHP-7.2/ext/standard/tests/strings/ |
H A D | ltrim_basic.phpt | 18 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 D | rtrim_basic.phpt | 20 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 D | trim_basic.phpt | 17 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 D | chunk_split_variation12.phpt | 130 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 …]
|