color             193 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color             467 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color             545 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color             851 ext/gd/gd.c    	ZEND_ARG_INFO(0, color)
color            1735 ext/gd/gd.c    	long cx, cy, w, h, color;
color            1738 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
color            1744 ext/gd/gd.c    	gdImageFilledEllipse(im, cx, cy, w, h, color);
color            2102 ext/gd/gd.c    	long color;
color            2105 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rdl|l", &SIM, &degrees, &color, &ignoretransparent) == FAILURE) {
color            2111 ext/gd/gd.c    	im_dst = gdImageRotateInterpolated(im_src, (const float)degrees, color);
color            2992 ext/gd/gd.c    	long color, red, green, blue, alpha = 0;
color            2996 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rllll|l", &IM, &color, &red, &green, &blue, &alpha) == FAILURE) {
color            3002 ext/gd/gd.c    	col = color;
color            3223 ext/gd/gd.c    	long cx, cy, w, h, color;
color            3226 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &cx, &cy, &w, &h, &color) == FAILURE) {
color            3232 ext/gd/gd.c    	gdImageEllipse(im, cx, cy, w, h, color);
color            3501 ext/gd/gd.c    static void php_gdimagecharup(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
color            3515 ext/gd/gd.c    				gdImageSetPixel(im, px, py, color);
color            4403 ext/gd/gd.c    	int color, color_org, median;
color            4436 ext/gd/gd.c    				color = black;
color            4438 ext/gd/gd.c    				color = white;
color            4440 ext/gd/gd.c    			gdImageSetPixel (im_dest, x, y, color);
color            4463 ext/gd/gd.c    	int color, color_org, median;
color            4605 ext/gd/gd.c    				color = black;
color            4607 ext/gd/gd.c    				color = white;
color            4609 ext/gd/gd.c    			gdImageSetPixel (im_dest, x, y, color);
color            5077 ext/gd/gd.c    	long color = -1;
color            5082 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|ldl", &IM, &mode, &threshold, &color) == FAILURE)  {
color            5100 ext/gd/gd.c    			if (color < 0) {
color            5104 ext/gd/gd.c    			im_crop = gdImageCropThreshold(im, color, (float) threshold);
color             587 ext/gd/libgd/gd.c void gdImageColorDeallocate (gdImagePtr im, int color)
color             593 ext/gd/libgd/gd.c 	im->open[color] = 1;
color             596 ext/gd/libgd/gd.c void gdImageColorTransparent (gdImagePtr im, int color)
color             602 ext/gd/libgd/gd.c 		if (color > -1 && color < im->colorsTotal && color < gdMaxColors) {
color             603 ext/gd/libgd/gd.c 			im->alpha[color] = gdAlphaTransparent;
color             608 ext/gd/libgd/gd.c 	im->transparent = color;
color             720 ext/gd/libgd/gd.c void gdImageSetPixel (gdImagePtr im, int x, int y, int color)
color             723 ext/gd/libgd/gd.c 	switch (color) {
color             762 ext/gd/libgd/gd.c 							im->tpixels[y][x] = color;
color             765 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color);
color             768 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color);
color             771 ext/gd/libgd/gd.c 							im->tpixels[y][x] = gdLayerOverlay(im->tpixels[y][x], color);
color             775 ext/gd/libgd/gd.c 					im->pixels[y][x] = color;
color            1013 ext/gd/libgd/gd.c 	int color = im->AA_color, color_red, color_green, color_blue;
color            1018 ext/gd/libgd/gd.c 	color_red = gdImageRed(im, color);
color            1019 ext/gd/libgd/gd.c 	color_green = gdImageGreen(im, color);
color            1020 ext/gd/libgd/gd.c 	color_blue = gdImageBlue(im, color);
color            1028 ext/gd/libgd/gd.c 				if ((old_color != color) && ((old_color != im->AA_dont_blend) || (im->AA_opacity[py][px] == 255))) {
color            1034 ext/gd/libgd/gd.c 						p_color = color;
color            1093 ext/gd/libgd/gd.c void gdImageLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            1100 ext/gd/libgd/gd.c 	if (color == gdAntiAliased) {
color            1119 ext/gd/libgd/gd.c 		gdImageVLine(im, x1, y1, y2, color);
color            1122 ext/gd/libgd/gd.c 		gdImageHLine(im, y1, x1, x2, color);
color            1162 ext/gd/libgd/gd.c 			gdImageSetPixel(im, x, w, color);
color            1176 ext/gd/libgd/gd.c 					gdImageSetPixel (im, x, w, color);
color            1190 ext/gd/libgd/gd.c 					gdImageSetPixel (im, x, w, color);
color            1226 ext/gd/libgd/gd.c 			gdImageSetPixel (im, w, y, color);
color            1240 ext/gd/libgd/gd.c 					gdImageSetPixel (im, w, y, color);
color            1254 ext/gd/libgd/gd.c 					gdImageSetPixel (im, w, y, color);
color            1268 ext/gd/libgd/gd.c inline static void gdImageSetAAPixelColor(gdImagePtr im, int x, int y, int color, int t)
color            1271 ext/gd/libgd/gd.c 	dr = gdTrueColorGetRed(color);
color            1272 ext/gd/libgd/gd.c 	dg = gdTrueColorGetGreen(color);
color            1273 ext/gd/libgd/gd.c 	db = gdTrueColorGetBlue(color);
color            1398 ext/gd/libgd/gd.c static void dashedSet (gdImagePtr im, int x, int y, int color, int *onP, int *dashStepP, int wid, int vert);
color            1400 ext/gd/libgd/gd.c void gdImageDashedLine (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            1438 ext/gd/libgd/gd.c 		dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1448 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1459 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1487 ext/gd/libgd/gd.c 		dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1497 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1508 ext/gd/libgd/gd.c 				dashedSet(im, x, y, color, &on, &dashStep, wid, vert);
color            1514 ext/gd/libgd/gd.c static void dashedSet (gdImagePtr im, int x, int y, int color, int *onP, int *dashStepP, int wid, int vert)
color            1529 ext/gd/libgd/gd.c 				gdImageSetPixel(im, x, w, color);
color            1534 ext/gd/libgd/gd.c 				gdImageSetPixel(im, w, y, color);
color            1542 ext/gd/libgd/gd.c void gdImageChar (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
color            1559 ext/gd/libgd/gd.c 				gdImageSetPixel(im, px, py, color);
color            1568 ext/gd/libgd/gd.c void gdImageCharUp (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color)
color            1585 ext/gd/libgd/gd.c 				gdImageSetPixel(im, px, py, color);
color            1594 ext/gd/libgd/gd.c void gdImageString (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color)
color            1600 ext/gd/libgd/gd.c 		gdImageChar(im, f, x, y, s[i], color);
color            1605 ext/gd/libgd/gd.c void gdImageStringUp (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color)
color            1611 ext/gd/libgd/gd.c 		gdImageCharUp(im, f, x, y, s[i], color);
color            1618 ext/gd/libgd/gd.c void gdImageString16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color)
color            1624 ext/gd/libgd/gd.c 		gdImageChar(im, f, x, y, s[i], color);
color            1629 ext/gd/libgd/gd.c void gdImageStringUp16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color)
color            1635 ext/gd/libgd/gd.c 		gdImageCharUp(im, f, x, y, s[i], color);
color            1668 ext/gd/libgd/gd.c void gdImageArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color)
color            1671 ext/gd/libgd/gd.c 		gdImageEllipse(im, cx, cy, w, h, color);
color            1673 ext/gd/libgd/gd.c 		gdImageFilledArc(im, cx, cy, w, h, s, e, color, gdNoFill);
color            1677 ext/gd/libgd/gd.c void gdImageFilledArc (gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color, int style)
color            1715 ext/gd/libgd/gd.c 					gdImageLine(im, lx, ly, x, y, color);
color            1724 ext/gd/libgd/gd.c 					gdImageFilledPolygon(im, pts, 3, color);
color            1737 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, lx, ly, color);
color            1738 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, fx, fy, color);
color            1740 ext/gd/libgd/gd.c 			gdImageLine(im, fx, fy, lx, ly, color);
color            1748 ext/gd/libgd/gd.c 			gdImageFilledPolygon(im, pts, 3, color);
color            1753 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, lx, ly, color);
color            1754 ext/gd/libgd/gd.c 				gdImageLine(im, cx, cy, fx, fy, color);
color            1760 ext/gd/libgd/gd.c void gdImageFillToBorder (gdImagePtr im, int x, int y, int border, int color)
color            1790 ext/gd/libgd/gd.c 		gdImageSetPixel(im, i, y, color);
color            1803 ext/gd/libgd/gd.c 		gdImageSetPixel(im, i, y, color);
color            1813 ext/gd/libgd/gd.c 				if ((c != border) && (c != color)) {
color            1814 ext/gd/libgd/gd.c 					gdImageFillToBorder(im, i, y - 1, border, color);
color            1817 ext/gd/libgd/gd.c 			} else if ((c == border) || (c == color)) {
color            1830 ext/gd/libgd/gd.c 				if ((c != border) && (c != color)) {
color            1831 ext/gd/libgd/gd.c 					gdImageFillToBorder(im, i, y + 1, border, color);
color            1834 ext/gd/libgd/gd.c 			} else if ((c == border) || (c == color)) {
color            2036 ext/gd/libgd/gd.c void gdImageRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            2043 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
color            2074 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2082 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2090 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2098 ext/gd/libgd/gd.c 				gdImageSetPixel(im, cx, cy, color);
color            2105 ext/gd/libgd/gd.c 			gdImageLine(im, x1, y1, x2, y2, color);
color            2109 ext/gd/libgd/gd.c 			gdImageLine(im, x1h, y1h, x2h, y1h, color);
color            2110 ext/gd/libgd/gd.c 			gdImageLine(im, x1h, y2h, x2h, y2h, color);
color            2111 ext/gd/libgd/gd.c 			gdImageLine(im, x1v, y1v, x1v, y2v, color);
color            2112 ext/gd/libgd/gd.c 			gdImageLine(im, x2v, y1v, x2v, y2v, color);
color            2117 ext/gd/libgd/gd.c void gdImageFilledRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
color            2123 ext/gd/libgd/gd.c 		gdImageSetPixel(im, x1, y1, color);
color            2157 ext/gd/libgd/gd.c 			gdImageSetPixel (im, x, y, color);
color            2571 ext/gd/libgd/gd.c 	typedef void (*image_line)(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             416 ext/gd/libgd/gd.h void gdImageSetPixel(gdImagePtr im, int x, int y, int color);
color             423 ext/gd/libgd/gd.h void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             424 ext/gd/libgd/gd.h void gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             428 ext/gd/libgd/gd.h void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             431 ext/gd/libgd/gd.h void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             433 ext/gd/libgd/gd.h void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color);
color             436 ext/gd/libgd/gd.h void gdImageChar(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
color             437 ext/gd/libgd/gd.h void gdImageCharUp(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
color             438 ext/gd/libgd/gd.h void gdImageString(gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color);
color             439 ext/gd/libgd/gd.h void gdImageStringUp(gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color);
color             440 ext/gd/libgd/gd.h void gdImageString16(gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color);
color             441 ext/gd/libgd/gd.h void gdImageStringUp16(gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color);
color             546 ext/gd/libgd/gd.h void gdImageColorDeallocate(gdImagePtr im, int color);
color             583 ext/gd/libgd/gd.h void gdImageColorTransparent(gdImagePtr im, int color);
color             666 ext/gd/libgd/gd.h void gdImageFilledArc(gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color, int style);
color             667 ext/gd/libgd/gd.h void gdImageArc(gdImagePtr im, int cx, int cy, int w, int h, int s, int e, int color);
color             668 ext/gd/libgd/gd.h void gdImageFilledEllipse(gdImagePtr im, int cx, int cy, int w, int h, int color);
color             669 ext/gd/libgd/gd.h void gdImageFillToBorder(gdImagePtr im, int x, int y, int border, int color);
color             670 ext/gd/libgd/gd.h void gdImageFill(gdImagePtr im, int x, int y, int color);
color             838 ext/gd/libgd/gd.h gdImagePtr gdImageCropThreshold(gdImagePtr im, const unsigned int color, const float threshold);
color              16 ext/gd/libgd/gd_arc_f_buggy.c gdImageFilledEllipse (gdImagePtr im, int cx, int cy, int width, int height, int color)
color              18 ext/gd/libgd/gd_arc_f_buggy.c   gdImageFilledArc (im, cx, cy, width, height, 0, 360, color, gdChord);
color              22 ext/gd/libgd/gd_arc_f_buggy.c gdImageFilledArc (gdImagePtr im, int cx, int cy, int width, int height, int s, int e, int color, int style)
color             110 ext/gd/libgd/gd_arc_f_buggy.c 	  gdImageFilledArc (im, cx, cy, width, height, s, (i + 1) * 90, color, gdChord);
color             118 ext/gd/libgd/gd_arc_f_buggy.c 	      gdImageFilledArc (im, cx, cy, width, height, (i + 1) * 90, e, color, gdChord);
color             124 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledPolygon (im, pt, 3, color);
color             125 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImagePolygon (im, pt, 3, color);
color             131 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledPolygon (im, pt, 4, color);
color             132 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImagePolygon (im, pt, 4, color);
color             137 ext/gd/libgd/gd_arc_f_buggy.c 	      gdImageFilledArc (im, cx, cy, width, height, (i + 1) * 90, (i + 2) * 90, color, gdChord);
color             142 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledArc (im, cx, cy, width, height, (i + 2) * 90, e, color, gdChord);
color             148 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledPolygon (im, pt, 4, color);
color             149 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImagePolygon (im, pt, 4, color);
color             155 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledPolygon (im, pt, 5, color);
color             156 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImagePolygon (im, pt, 5, color);
color             161 ext/gd/libgd/gd_arc_f_buggy.c 		  gdImageFilledArc (im, cx, cy, width, height, (i + 2) * 90, (i + 3) * 90, color, gdChord);
color             166 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledArc (im, cx, cy, width, height, (i + 3) * 90, e, color, gdChord);
color             172 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 5, color);
color             173 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 5, color);
color             179 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 6, color);
color             180 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 6, color);
color             185 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledArc (im, cx, cy, width, height, (i + 3) * 90, (i + 4) * 90, color, gdChord);
color             189 ext/gd/libgd/gd_arc_f_buggy.c 		      gdImageFilledArc (im, cx, cy, width, height, (i + 4) * 90, e, color, gdChord);
color             195 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 6, color);
color             196 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 6, color);
color             202 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImageFilledPolygon (im, pt, 7, color);
color             203 ext/gd/libgd/gd_arc_f_buggy.c 			  gdImagePolygon (im, pt, 7, color);
color             375 ext/gd/libgd/gd_arc_f_buggy.c       gdImageFilledPolygon (im, pt, 3, color);
color             376 ext/gd/libgd/gd_arc_f_buggy.c       gdImagePolygon (im, pt, 3, color);
color             397 ext/gd/libgd/gd_arc_f_buggy.c       gdImageFilledPolygon (im, pt, 3, color);
color             398 ext/gd/libgd/gd_arc_f_buggy.c       gdImagePolygon (im, pt, 3, color);
color             462 ext/gd/libgd/gd_arc_f_buggy.c 			       ((flip_y) ? (cy - y) : (cy + y)), color);
color             527 ext/gd/libgd/gd_arc_f_buggy.c 			       ((flip_y) ? (cy - y) : (cy + y)), color);
color              19 ext/gd/libgd/gd_color.c 	int color, rgb;
color              41 ext/gd/libgd/gd_color.c 			color = im2->pixels[y][x];
color              43 ext/gd/libgd/gd_color.c 			bp = buf + (color * 5);
color              52 ext/gd/libgd/gd_color.c 	for (color=0; color<im2->colorsTotal; color++) {
color              55 ext/gd/libgd/gd_color.c 			im2->red[color]		= *(bp++) / count;
color              56 ext/gd/libgd/gd_color.c 			im2->green[color]	= *(bp++) / count;
color              57 ext/gd/libgd/gd_color.c 			im2->blue[color]	= *(bp++) / count;
color              58 ext/gd/libgd/gd_color.c 			im2->alpha[color]	= *(bp++) / count;
color              27 ext/gd/libgd/gd_crop.c static int gdGuessBackgroundColorFromCorners(gdImagePtr im, int *color);
color             120 ext/gd/libgd/gd_crop.c 	int color, corners, match;
color             130 ext/gd/libgd/gd_crop.c 			color = gdImageGetTransparent(im);
color             134 ext/gd/libgd/gd_crop.c 			color = gdImageColorClosestAlpha(im, 0, 0, 0, 0);
color             138 ext/gd/libgd/gd_crop.c 			color = gdImageColorClosestAlpha(im, 255, 255, 255, 0);
color             142 ext/gd/libgd/gd_crop.c 			corners = gdGuessBackgroundColorFromCorners(im, &color);
color             147 ext/gd/libgd/gd_crop.c 			color = gdImageGetTransparent(im);
color             148 ext/gd/libgd/gd_crop.c 			if (color == -1) {
color             149 ext/gd/libgd/gd_crop.c 				corners = gdGuessBackgroundColorFromCorners(im, &color);
color             162 ext/gd/libgd/gd_crop.c 			match = (color == c2);
color             177 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
color             190 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
color             198 ext/gd/libgd/gd_crop.c 			match = (color == gdImageGetPixel(im, x,y));
color             227 ext/gd/libgd/gd_crop.c gdImagePtr gdImageCropThreshold(gdImagePtr im, const unsigned int color, const float threshold)
color             253 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
color             269 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x, y), threshold)) > 0;
color             282 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
color             290 ext/gd/libgd/gd_crop.c 			match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0;
color             304 ext/gd/libgd/gd_crop.c static int gdGuessBackgroundColorFromCorners(gdImagePtr im, int *color)
color             312 ext/gd/libgd/gd_crop.c 		*color = tr;
color             315 ext/gd/libgd/gd_crop.c 		*color = tl;
color             318 ext/gd/libgd/gd_crop.c 		*color = tl;
color             321 ext/gd/libgd/gd_crop.c 		*color = tl;
color             324 ext/gd/libgd/gd_crop.c 		*color = tl;
color             327 ext/gd/libgd/gd_crop.c 		*color = tr;
color             330 ext/gd/libgd/gd_crop.c 		*color = bl;
color             339 ext/gd/libgd/gd_crop.c 		*color = gdImageColorClosestAlpha(im, r, g, b, a);
color            1160 ext/gd/libgd/gd_interpolation.c static inline int getPixelOverflowColorTC(gdImagePtr im, const int x, const int y, const int color)
color             111 ext/gd/libgd/wbmp.c createwbmp (int width, int height, int color)
color             137 ext/gd/libgd/wbmp.c   for (i = 0; i < width * height; wbmp->bitmap[i++] = color);
color              46 ext/gd/libgd/wbmp.h Wbmp   *createwbmp( int width, int height, int color );
color             555 sapi/cli/php_cli_server.c 	cg->color = 0;
color             559 sapi/cli/php_cli_server.c 	STD_PHP_INI_BOOLEAN("cli_server.color", "0", PHP_INI_ALL, OnUpdateBool, color, zend_cli_server_globals, cli_server_globals)
color            1191 sapi/cli/php_cli_server.c 	int color = 0, effective_status = status;
color            1213 sapi/cli/php_cli_server.c 	if (CLI_SERVER_G(color) && php_cli_is_output_tty() == OUTPUT_IS_TTY) {
color            1216 sapi/cli/php_cli_server.c 			color = 1;
color            1219 sapi/cli/php_cli_server.c 			color = 3;
color            1222 sapi/cli/php_cli_server.c 			color = 2;
color            1254 sapi/cli/php_cli_server.c 	if (color) {
color            1255 sapi/cli/php_cli_server.c 		php_cli_server_logf("\x1b[3%dm%s%s%s\x1b[0m" TSRMLS_CC, color, basic_buf, message_buf, error_buf);
color              31 sapi/cli/php_cli_server.h 	short color;
color             340 sapi/phpdbg/phpdbg.c 	char *color = NULL;
color             343 sapi/phpdbg/phpdbg.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ls", &element, &color, &color_len) == FAILURE) {
color             351 sapi/phpdbg/phpdbg.c 			phpdbg_set_color_ex(element, color, color_len TSRMLS_CC);
color             390 sapi/phpdbg/phpdbg.c 	ZEND_ARG_INFO(0, color)
color              36 sapi/phpdbg/phpdbg_set.c 	PHPDBG_SET_COMMAND_D(color,        "usage: set color  <element> <color>",     'c', set_color,        NULL, "ss"),
color             105 sapi/phpdbg/phpdbg_set.c PHPDBG_SET(color) /* {{{ */
color             107 sapi/phpdbg/phpdbg_set.c 	const phpdbg_color_t *color = phpdbg_get_color(
color             110 sapi/phpdbg/phpdbg_set.c 	if (!color) {
color             119 sapi/phpdbg/phpdbg_set.c 				"setting prompt color to %s (%s)", color->name, color->code);
color             124 sapi/phpdbg/phpdbg_set.c 			phpdbg_set_color(PHPDBG_COLOR_PROMPT, color TSRMLS_CC);
color             129 sapi/phpdbg/phpdbg_set.c 				"setting error color to %s (%s)", color->name, color->code);
color             130 sapi/phpdbg/phpdbg_set.c 			phpdbg_set_color(PHPDBG_COLOR_ERROR, color TSRMLS_CC);
color             135 sapi/phpdbg/phpdbg_set.c 				"setting notice color to %s (%s)", color->name, color->code);
color             136 sapi/phpdbg/phpdbg_set.c 			phpdbg_set_color(PHPDBG_COLOR_NOTICE, color TSRMLS_CC);
color              30 sapi/phpdbg/phpdbg_set.h PHPDBG_SET(color);
color             326 sapi/phpdbg/phpdbg_utils.c 	const phpdbg_color_t *color = colors;
color             328 sapi/phpdbg/phpdbg_utils.c 	while (color && color->name) {
color             329 sapi/phpdbg/phpdbg_utils.c 		if (name_length == color->name_length &&
color             330 sapi/phpdbg/phpdbg_utils.c 			memcmp(name, color->name, name_length) == SUCCESS) {
color             332 sapi/phpdbg/phpdbg_utils.c 				"phpdbg_get_color(%s, %lu): %s", name, name_length, color->code);
color             333 sapi/phpdbg/phpdbg_utils.c 			return color;
color             335 sapi/phpdbg/phpdbg_utils.c 		++color;
color             344 sapi/phpdbg/phpdbg_utils.c PHPDBG_API void phpdbg_set_color(int element, const phpdbg_color_t *color TSRMLS_DC) /* {{{ */
color             346 sapi/phpdbg/phpdbg_utils.c 	PHPDBG_G(colors)[element] = color;
color             351 sapi/phpdbg/phpdbg_utils.c 	const phpdbg_color_t *color = phpdbg_get_color(name, name_length TSRMLS_CC);
color             353 sapi/phpdbg/phpdbg_utils.c 	if (color) {
color             354 sapi/phpdbg/phpdbg_utils.c 		phpdbg_set_color(element, color TSRMLS_CC);
color              84 sapi/phpdbg/phpdbg_utils.h #define PHPDBG_COLOR_D(color, code) \
color              85 sapi/phpdbg/phpdbg_utils.h 	{color, sizeof(color)-1, code}
color             113 sapi/phpdbg/phpdbg_utils.h PHPDBG_API void phpdbg_set_color(int element, const phpdbg_color_t *color TSRMLS_DC);