HomeSort by relevance Sort by last modified time
    Searched refs:rgb (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/webkit/WebCore/inspector/front-end/
inspectorSyntaxHighlight.css 30 color: rgb(0, 116, 0);
34 color: rgb(7, 144, 154);
38 color: rgb(50, 0, 255);
42 color: rgb(200, 0, 0);
46 rgb(0, 0, 0);
50 color: rgb(200, 0, 180);
54 color: rgb(0, 116, 0);
58 color: rgb(170, 13, 145);
62 color: rgb(28, 0, 207);
66 color: rgb(196, 26, 22)
    [all...]
audits.css 61 background-color: rgb(245, 245, 245);
88 border-bottom: 1px solid rgb(189, 189, 189) !important;
116 color: rgb(0, 0, 0);
180 color: rgb(110, 116, 128);
210 color: rgb(6, 6, 6);
212 border: 1px solid rgb(165, 165, 165);
213 background-color: rgb(237, 237, 237);
214 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223)));
227 background-color: rgb(215, 215, 215)
    [all...]
Color.js 67 get rgb()
82 set rgb(x)
92 this._hsl = this._rgbToHSL(this.rgb);
146 case "rgb":
147 return "rgb(" + this.rgb.join(", ") + ")";
167 _rgbToHex: function(rgb)
169 var r = parseInt(rgb[0]).toString(16);
170 var g = parseInt(rgb[1]).toString(16);
171 var b = parseInt(rgb[2]).toString(16)
    [all...]
inspector.css 74 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151)));
75 border-bottom: 1px solid rgb(80, 80, 80);
82 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(207, 207, 207)));
83 border-bottom: 1px solid rgb(64%, 64%, 64%);
93 border-top: 1px solid rgb(100, 100, 100);
103 border-top: 1px solid rgb(64%, 64%, 64%);
305 background-color: rgb(235, 235, 235);
367 background-color: rgb(66, 129, 235)
    [all...]
  /external/webkit/WebCore/css/
view-source.css 50 background-color: rgb(240, 240, 240);
51 border-right: 1px solid rgb(187, 187, 187) !important;
66 color: rgb(128, 128, 128);
85 color: rgb(136, 18, 128);
90 color: rgb(153, 69, 0);
95 color: rgb(26, 26, 166);
115 color: rgb(35, 110, 37);
120 color: rgb(192, 192, 192);
124 rgb(136, 18, 128);
140 background-color: rgb(100%, 62%, 42%)
    [all...]
SVGCSSComputedStyleDeclaration.cpp 117 return CSSPrimitiveValue::createColor(svgStyle->floodColor().rgb());
119 return CSSPrimitiveValue::createColor(svgStyle->lightingColor().rgb());
121 return CSSPrimitiveValue::createColor(svgStyle->stopColor().rgb());
  /sdk/traceview/src/com/android/traceview/
ColorController.java 25 import org.eclipse.swt.graphics.RGB;
34 private static RGB[] rgbColors = { new RGB(90, 90, 255), // blue
35 new RGB(0, 240, 0), // green
36 new RGB(255, 0, 0), // red
37 new RGB(0, 255, 255), // cyan
38 new RGB(255, 80, 255), // magenta
39 new RGB(200, 200, 0), // yellow
40 new RGB(40, 0, 200), // dark blue
41 new RGB(150, 255, 150), // light gree
94 RGB rgb = rgbColors[nextColorIndex]; local
    [all...]
  /external/jpeg/
jdcolor.c 21 /* Private state for YCC->RGB conversion */
51 /**************** YCbCr -> RGB conversion: most common case **************/
86 * Initialize tables for YCC->RGB colorspace conversion.
240 INT32 rgb; local
255 rgb = PACK_SHORT_565(r,g,b);
256 *(INT16*)outptr = rgb;
267 rgb = PACK_SHORT_565(r,g,b);
275 rgb = PACK_TWO_PIXELS(rgb, PACK_SHORT_565(r,g,b));
276 WRITE_TWO_ALIGNED_PIXELS(outptr, rgb);
313 INT32 rgb; local
408 INT32 rgb; local
461 INT32 rgb; local
608 INT32 rgb; local
647 INT32 rgb; local
    [all...]
jdmerge.c 26 * YCbCr => RGB color conversion only.
70 /* Private state for YCC->RGB conversion */
96 * Initialize tables for YCC->RGB colorspace conversion.
326 INT32 rgb; local
346 rgb = PACK_SHORT_565(r,g,b);
351 rgb = PACK_TWO_PIXELS(rgb, PACK_SHORT_565(r,g,b));
352 WRITE_TWO_PIXELS(outptr, rgb);
366 rgb = PACK_SHORT_565(r,g,b);
367 *(INT16*)outptr = rgb;
392 INT32 rgb; local
540 INT32 rgb; local
628 INT32 rgb; local
    [all...]
  /external/webkit/WebCore/platform/graphics/
Color.h 97 RGBA32 rgb() const { return m_color; } // Preserve the alpha. function in class:WebCore::Color
99 void setRGB(RGBA32 rgb) { m_color = rgb; m_valid = true; }
134 static bool parseHexColor(const String& name, RGBA32& rgb);
154 return a.rgb() == b.rgb() && a.isValid() == b.isValid();
  /cts/tests/tests/text/src/android/text/style/cts/
TextAppearanceSpanTest.java 65 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
104 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
119 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
146 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
169 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
189 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
203 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
221 int[] colors = new int[] { Color.rgb(0, 0, 255), Color.BLACK };
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerSolid.cpp 70 context->setFillColor(color().rgb(), colorSpace);
79 context->setStrokeColor(color().rgb(), colorSpace);
  /cts/tests/tests/graphics/src/android/graphics/cts/
LightingColorFilterTest.java 79 new LightingColorFilter(Color.rgb(0x80, 0xFF, 0x80), Color.rgb(0, 10, 10)));
87 new LightingColorFilter(Color.rgb(0x80, 0xFF, 0x80), Color.rgb(0, 10, 10)));
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3dtypes.h 58 #define RGBA_GETALPHA(rgb) ((rgb) >> 24)
59 #define RGBA_GETRED(rgb) (((rgb) >> 16) & 0xff)
60 #define RGBA_GETGREEN(rgb) (((rgb) >> 8) & 0xff)
61 #define RGBA_GETBLUE(rgb) ((rgb) & 0xff)
75 * Format of RGB colors is
80 #define RGB_GETRED(rgb) (((rgb) >> 16) & 0xff)
    [all...]
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DTYPES.H 58 #define RGBA_GETALPHA(rgb) ((rgb) >> 24)
59 #define RGBA_GETRED(rgb) (((rgb) >> 16) & 0xff)
60 #define RGBA_GETGREEN(rgb) (((rgb) >> 8) & 0xff)
61 #define RGBA_GETBLUE(rgb) ((rgb) & 0xff)
75 * Format of RGB colors is
80 #define RGB_GETRED(rgb) (((rgb) >> 16) & 0xff)
    [all...]
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEFlood.cpp 72 Color color = colorWithOverrideAlpha(floodColor().rgb(), floodOpacity());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IGraphics.java 38 IColor registerColor(int rgb);
  /external/libpng/contrib/gregbook/
rpng2-x.c 205 } rgb[] = { variable in typeref:struct:rgb_color
225 static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
484 " bg \tdesired background color in 7-character hex RGB format\n"
    [all...]
rpng2-win.c 170 } rgb[] = { variable in typeref:struct:rgb_color
189 static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
441 " bg \tdesired background color in 7-character hex RGB format\n"
840 uch r1_min = rgb[bg[pat].rgb1_min].r;
841 uch g1_min = rgb[bg[pat].rgb1_min].g;
842 uch b1_min = rgb[bg[pat].rgb1_min].b;
843 uch r2_min = rgb[bg[pat].rgb2_min].r;
844 uch g2_min = rgb[bg[pat].rgb2_min].g;
845 uch b2_min = rgb[bg[pat].rgb2_min].b;
846 int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min
    [all...]
  /cts/tools/host/src/res/
cts_result.css 46 background-color: rgb(212, 233, 169);
73 background-color: rgb(212, 233, 169);
88 background-color: rgb(212, 233, 169);
114 background-color: rgb(212, 233, 169);
  /cts/tools/tradefed-host/res/result/
cts_result.css 46 background-color: rgb(212, 233, 169);
73 background-color: rgb(212, 233, 169);
88 background-color: rgb(212, 233, 169);
114 background-color: rgb(212, 233, 169);
  /external/skia/src/images/
SkImageDecoder_libbmp.cpp 74 uint8_t* rgb() const { return fRGB.begin(); } function in class:SkBmpDecoderCallback
95 // Now decode the BMP into callback's rgb() array [r,g,b, r,g,b, ...]
139 const uint8_t* srcRow = callback.rgb();
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.c 395 short rgb[3]; local
397 vq_color(VDI_handle, i, 0, rgb);
399 VDI_oldpalette[i][0] = rgb[0];
400 VDI_oldpalette[i][1] = rgb[1];
401 VDI_oldpalette[i][2] = rgb[2];
505 short oldrgb[3], rgb[3]={0,0,0}; local
508 vs_color(VDI_handle, vdi_index[0], rgb);
535 short rgb[3]; local
541 rgb[0] = newpal[i][0];
542 rgb[1] = newpal[i][1]
1069 short rgb[3]; local
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasStyle.cpp 117 context->setStrokeColor(c.rgb(), DeviceColorSpace);
128 context->setStrokeColor(colorWithOverrideAlpha(c.rgb(), m_alpha), DeviceColorSpace);
178 context->setFillColor(c.rgb(), DeviceColorSpace);
189 context->setFillColor(colorWithOverrideAlpha(c.rgb(), m_alpha), DeviceColorSpace);
  /external/webkit/WebCore/svg/
SVGColor.cpp 65 return RGBColor::create(m_color.rgb());

Completed in 378 milliseconds

1 2 3 4