Home
last modified time | relevance | path

Searched refs:color (Results 26 – 50 of 142) sorted by relevance

123456

/PHP-8.0/ext/phar/tests/zip/
H A Dfrontcontroller3.phar.phpt18 <code><span style="color: #000000">
19 …le="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">function&nbsp;</span><span s…
H A Dfrontcontroller15.phar.phpt18 <code><span style="color: #000000">
19 …le="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">function&nbsp;</span><span s…
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_set.c35 …PHPDBG_SET_COMMAND_D(color, "usage: set color <element> <color>", 'c', set_color, …
143 PHPDBG_SET(color) /* {{{ */ in PHPDBG_SET() argument
145 const phpdbg_color_t *color = phpdbg_get_color(param->next->str, param->next->len); in PHPDBG_SET() local
147 if (!color) { in PHPDBG_SET()
154 …\"prompt\" color=\"%s\" code=\"%s\"", "setting prompt color to %s (%s)", color->name, color->code); in PHPDBG_SET()
159 phpdbg_set_color(PHPDBG_COLOR_PROMPT, color); in PHPDBG_SET()
163 …e=\"error\" color=\"%s\" code=\"%s\"", "setting error color to %s (%s)", color->name, color->code); in PHPDBG_SET()
164 phpdbg_set_color(PHPDBG_COLOR_ERROR, color); in PHPDBG_SET()
168 …\"notice\" color=\"%s\" code=\"%s\"", "setting notice color to %s (%s)", color->name, color->code); in PHPDBG_SET()
169 phpdbg_set_color(PHPDBG_COLOR_NOTICE, color); in PHPDBG_SET()
/PHP-8.0/ext/standard/tests/array/
H A Darray_fill_variation5.phpt23 /* 5 */ array('color' => 'red' , 'item' => 'pen'),
24 array( 'color' => 'red' , 2 => 'green ' ),
30 array( ""=>1, "color" => "green"),
129 ["color"]=>
136 ["color"]=>
146 ["color"]=>
153 ["color"]=>
216 ["color"]=>
225 ["color"]=>
254 ["color"]=>
[all …]
H A Darray_intersect_variation6.phpt40 /*7*/ array('\tHello' => 111, 're\td' => "color",
42 array("\tHello" => 111, "re\td" => "color",
56 $arr1 = array(1, "float", "f4", "hello", 2.2, 'color', "string", "pen\n", 11);
127 string(5) "color"
133 string(5) "color"
140 string(5) "color"
146 string(5) "color"
H A Darray_intersect_variation5.phpt40 /*7*/ array('\tHello' => 111, 're\td' => "color",
42 array("\tHello" => 111, "re\td" => "color",
56 $arr2 = array(1, "float", "f4", "hello", 2.2, 'color', "string", "pen\n", 11);
125 string(5) "color"
131 string(5) "color"
138 string(5) "color"
144 string(5) "color"
H A Darray_combine_variation4.phpt50 /*7*/ array('\tHello' => 111, 're\td' => "color",
52 array("\tHello" => 111, "re\td" => "color",
67 "\tHello" => 111, 2.2, 'color', "Hello world" => "string",
134 ["color"]=>
135 string(5) "color"
145 ["color"]=>
146 string(5) "color"
/PHP-8.0/ext/gd/tests/
H A Dgithub_bug_215.phpt17 /* Use unallocated color index */
21 /* Use negative color index */
26 /* Use unallocated color index */
30 /* Use negative color index */
35 /* Use negative color index */
H A Dimagecopyresampled_variation1.phpt34 /* assert all pixels have the same color */
35 $color = imagecolorat($copy, 3, 3);
38 if (imagecolorat($copy, $i, $j) != $color) {
45 $red = ($color & 0xFF0000) >> 16;
46 $green = ($color & 0x00FF00) >> 8;
47 $blue = ($color & 0x0000FF);
48 $alpha = ($color & 0x7F000000) >> 24;
H A Dsimilarity.inc11 * @param int $color
18 function get_rgb($color, &$red, &$green, &$blue)
20 // assumes $color is an RGB value
21 $red = ($color >> 16) & 0xFF;
22 $green = ($color >> 8) & 0xFF;
23 $blue = $color & 0xFF;
H A Dbug75124.phpt17 $color = imagecolorat($im, $i, $j);
18 $red = ($color >> 16) & 0xff;
19 $green = ($color >> 8) & 0xff;
20 $blue = $color & 0xff;
H A Dbug77198_threshold.phpt34 $color = imagecolorat($cropped, 0, 0);
35 if ($color !== 0x000000) {
36 printf("Pixel at %d, %d: unexpected color (%d)\n", $x, $y, $color);
H A Dbug77198_auto.phpt37 $color = imagecolorat($cropped, 0, 0);
38 if ($color !== 0x000000) {
39 printf("Pixel at %d, %d: unexpected color (%d)\n", $x, $y, $color);
H A Dbug73279.phpt15 printf("color: %x\n", imagecolorat($dst, 99, 99));
18 color: ffffff
H A Dbug73279_old.phpt15 printf("color: %x\n", imagecolorat($dst, 99, 99));
20 color: ffffff
H A Dbug61221.phpt18 $color = imagecolorat($img, 0, 0);
19 var_dump($color === $blacktransparent);
H A Dbug43475.phpt14 function setStyleAndThickness($im, $color, $thickness)
19 $style[$i++] = $color;
25 $style[$i++] = $color;
H A Dimagecopymergegray_basic.phpt24 $color = imagecolorat($des, 30, 30);
25 $rgb = imagecolorsforindex($des, $color);
H A Dbug43828.phpt17 $color = imagecolorallocatealpha($im, 0, 255, 0, 100);
18 imagefilledarc($im, 49, 49, 99,99, 0 , 360, $color, IMG_ARC_PIE);
/PHP-8.0/ext/gd/
H A Dgd.stub.php148 function imagecolordeallocate(GdImage $image, int $color): bool {} argument
156 function imagecolorsforindex(GdImage $image, int $color): array {} argument
160 function imagesetpixel(GdImage $image, int $x, int $y, int $color): bool {} argument
162 function imageline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument
164 function imagedashedline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument
166 function imagerectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument
174 function imagefilltoborder(GdImage $image, int $x, int $y, int $border_color, int $color): bool {} argument
176 function imagefill(GdImage $image, int $x, int $y, int $color): bool {} argument
180 function imagecolortransparent(GdImage $image, ?int $color = null): int {} argument
194 function imagechar(GdImage $image, int $font, int $x, int $y, string $char, int $color): bool {} argument
[all …]
/PHP-8.0/Zend/tests/
H A Dbug71086.phpt11 string(169) "<code><span style="color: #000000">
12 <span style="color: #0000BB">&lt;?php&nbsp;<br />&nbsp;09&nbsp;09&nbsp;09</span><span style="color:…
H A Dbug42767.phpt14 <code><span style="color: #000000">
15 <span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #FF8000">/*some&nbsp;comment.…
H A Dbug53347.phpt6 protected static $color = array( 'gray' => 30 );
14 var_dump( ezcConsoleOutput::isValidFormatCode( 'color', 'gray' ) );
/PHP-8.0/ext/gd/libgd/
H A Dgd.c633 im->open[color] = 1; in gdImageColorDeallocate()
638 if (color < 0) { in gdImageColorTransparent()
651 im->transparent = color; in gdImageColorTransparent()
766 switch (color) { in gdImageSetPixel()
807 im->tpixels[y][x] = color; in gdImageSetPixel()
821 im->pixels[y][x] = color; in gdImageSetPixel()
1047 if (color == gdAntiAliased) { in gdImageLine()
1218 dr = gdTrueColorGetRed(color); in gdImageSetAAPixelColor()
1220 db = gdTrueColorGetBlue(color); in gdImageSetAAPixelColor()
1809 if (border < 0 || color < 0) { in gdImageFillToBorder()
[all …]
H A Dgd.h414 void gdImageSetPixel(gdImagePtr im, int x, int y, int color);
421 void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
422 void gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
426 void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
429 void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
435 void gdImageChar(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
436 void gdImageCharUp(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
546 void gdImageColorDeallocate(gdImagePtr im, int color);
583 void gdImageColorTransparent(gdImagePtr im, int color);
674 void gdImageFillToBorder(gdImagePtr im, int x, int y, int border, int color);
[all …]

Completed in 59 milliseconds

123456