/external/libogg/doc/ |
index.html | 13 color: #333333; 18 color: #3366cc; 35 color: #ff9900; 60 color: #888888;
|
/external/libpng/contrib/pngminus/ |
pnm2png.bat | 7 REM -- full-color 18 REM -- color with alpha-channel 27 REM -- full-color 38 REM -- color with alpha-channel
|
/external/libvorbis/doc/ |
index.html | 13 color: #333333; 18 color: #3366cc; 35 color: #ff9900; 60 color: #888888;
|
/external/libxml2/result/SVG/ |
defs.xml | 7 <gradientstop offset="30%" color="#39F"/>
|
/external/libxml2/test/SVG/ |
defs.xml | 7 <gradientstop offset="30%" color="#39F"/>
|
/external/libxml2/test/valid/ |
dia.xml | 32 dia:color | dia:point | dia:rectangle | dia:string | dia:font)*> 50 <!ELEMENT dia:color EMPTY> 51 <!ATTLIST dia:color dia:val CDATA #REQUIRED> 69 <dia:color dia:val="#ffffff"/> 85 <dia:color dia:val="#000000"/> 124 <dia:attribute dia:name="color"> 125 <dia:color dia:val="#000000"/> 153 <dia:color dia:val="#000000"/> 156 <dia:color dia:val="#ffffff"/>
|
/external/llvm/docs/_ocamldoc/ |
style.css | 11 color:inherit; background: transparent; } 19 color: black; background: transparent /* url(line-height-22.gif) */; } 51 border-top-style:solid; border-width:1px; border-color:#AAA; } 77 a, a:link, a:visited, a:active, a:hover { color : #00B; text-decoration: none } 79 *:target {background-color: #FFFF99;} /* anchor highlight */ 84 .comment { color : red } 85 .constructor { color : green } 86 .string { color : brown } 87 .warning { color : red ; font-weight : bold }
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_clear.c | 45 const union pipe_color_union *color, 67 util_pack_color(color->f, cbuf->format, &u_color); 78 util_pack_color(color->f, cbuf->format, &u_color); 80 util_pack_color(color->f, PIPE_FORMAT_B8G8R8A8_UNORM, &u_color); 119 /* hw can't fastclear both depth and color if their bbp mismatch. */ 221 const union pipe_color_union *color, 224 util_clear(pipe, &i915_context(pipe)->framebuffer, buffers, color, depth, 230 const union pipe_color_union *color, 238 i915_clear_emit(pipe, buffers, color, depth, stencil,
|
/external/mesa3d/src/gallium/tests/graw/vertex-shader/ |
vert-arl.sh | 5 DCL OUT[1], COLOR
|
vert-arr.sh | 5 DCL OUT[1], COLOR
|
vert-flr.sh | 5 DCL OUT[1], COLOR
|
/external/mesa3d/src/mesa/swrast/ |
s_alpha.c | 41 switch (ctx->Color.AlphaFunc) { \ 99 if (ctx->Color.AlphaFunc == GL_ALWAYS) { 103 else if (ctx->Color.AlphaFunc == GL_NEVER) { 116 CLAMPED_FLOAT_TO_UBYTE(ref, ctx->Color.AlphaRef); 122 CLAMPED_FLOAT_TO_USHORT(ref, ctx->Color.AlphaRef); 127 const GLfloat ref = ctx->Color.AlphaRef; 138 CLAMPED_FLOAT_TO_UBYTE(ref, ctx->Color.AlphaRef); 145 CLAMPED_FLOAT_TO_USHORT(ref, ctx->Color.AlphaRef); 151 const GLfloat ref = ctx->Color.AlphaRef;
|
/external/opencv/otherlibs/highgui/ |
grfmt_imageio.h | 24 bool ReadData( uchar* data, int step, int color );
|
image.cpp | 116 int color = desired_color; local 119 if( color < 0 ) 120 color = img->nChannels > 1; 123 (!color ? 1 : img->nChannels > 1 ? img->nChannels : 3)*8, 248 void CvvImage::Fill( int color ) 250 cvSet( m_img, cvScalar(color&255,(color>>8)&255,(color>>16)&255,(color>>24)&255) );
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_colorspaces/ |
py_colorspaces.markdown | 7 - In this tutorial, you will learn how to convert images from one color-space to another, like 12 Changing Color-space 15 There are more than 150 color-space conversion methods available in OpenCV. But we will look into 18 For color conversion, we use the function cv2.cvtColor(input_image, flag) where flag determines the 37 is more easier to represent a color than in BGR color-space. In our application, we will try to extract 41 - Convert from BGR to HSV color-space 42 - We threshold the HSV image for a range of blue color 60 # define range of blue color in HSV
|
/external/opencv3/doc/py_tutorials/py_video/ |
py_table_of_contents_video.markdown | 7 an example of color-based tracking. It is simpler. This time, we see significantly better
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
NCV.cu | 66 T color) 93 d_dst[ptY * dstStride + pt0x] = color; 112 d_dst[pt0y * dstStride + ptX] = color; 127 T color, 149 drawRects<T><<<grid, block>>>(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color); 163 Ncv8u color, 166 return drawRectsWrapperDevice(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color, cuStream); 176 Ncv32u color, 179 return drawRectsWrapperDevice(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color, cuStream);
|
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/ |
generalContours_demo1.cpp | 80 Scalar color = Scalar( rng.uniform(0, 255), rng.uniform(0,255), rng.uniform(0,255) ); local 81 drawContours( drawing, contours_poly, (int)i, color, 1, 8, vector<Vec4i>(), 0, Point() ); 82 rectangle( drawing, boundRect[i].tl(), boundRect[i].br(), color, 2, 8, 0 ); 83 circle( drawing, center[i], (int)radius[i], color, 2, 8, 0 );
|
generalContours_demo2.cpp | 77 Scalar color = Scalar( rng.uniform(0, 255), rng.uniform(0,255), rng.uniform(0,255) ); local 79 drawContours( drawing, contours, (int)i, color, 1, 8, vector<Vec4i>(), 0, Point() ); 81 ellipse( drawing, minEllipse[i], color, 2, 8 ); 85 line( drawing, rect_points[j], rect_points[(j+1)%4], color, 1, 8 );
|
/external/pdfium/third_party/libopenjpeg20/ |
0005-jp2_apply_pclr.patch | 5 @@ -902,7 +902,7 @@ static OPJ_BOOL opj_jp2_check_color(opj_image_t *image, opj_jp2_color_t *color, 14 @@ -982,8 +982,8 @@ static void opj_jp2_apply_pclr(opj_image_t *image, opj_jp2_color_t *color) 25 @@ -1007,11 +1007,11 @@ static void opj_jp2_apply_pclr(opj_image_t *image, opj_jp2_color_t *color) 39 @@ -1019,8 +1019,8 @@ static void opj_jp2_apply_pclr(opj_image_t *image, opj_jp2_color_t *color)
|
/external/pdfium/xfa/src/fwl/src/theme/ |
listboxtp.cpp | 48 FX_DWORD color = 0xFF000000;
local 50 color = 0xFFFF0000;
52 color = 0xFF0000FF;
54 FillSoildRect(pParams->m_pGraphics, color, &pParams->m_rtPart,
|
/external/proguard/src/proguard/gui/splash/ |
ClipSprite.java | 40 * @param insideClipColor the background color inside the clip sprite. 41 * @param outsideClipColor the background color outside the clip sprite. 62 Color outsideColor = outsideClipColor.getColor(time); 70 Color insideColor = insideClipColor.getColor(time);
|
/external/replicaisland/res/drawable/ |
custom_toast_border.xml | 5 <solid android:color="#99000000"/>
|
/external/skia/gm/ |
emptypath.cpp | 28 SkColor color, 35 paint.setColor(color); 94 SkColor color = rand.nextU(); local 95 color = 0xff000000 | color; // force solid 96 color = sk_tool_utils::color_to_565(color); 97 this->drawEmpty(canvas, color, rect, 108 labelPaint.setColor(color);
|
gm.cpp | 50 void GM::setBGColor(SkColor color) { 51 fBGColor = color; 64 void GM::drawSizeBounds(SkCanvas* canvas, SkColor color) { 69 paint.setColor(color);
|