HomeSort by relevance Sort by last modified time
    Searched full:blue (Results 76 - 100 of 614) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/
Gradient.h 107 float blue; member in struct:WebCore::Gradient::ColorStop
110 ColorStop() : stop(0), red(0), green(0), blue(0), alpha(0) { }
111 ColorStop(float s, float r, float g, float b, float a) : stop(s), red(r), green(g), blue(b), alpha(a) { }
Color.cpp 157 int dB = c1.blue() - c2.blue();
184 return String::format("#%02X%02X%02X%02X", red(), green(), blue(), alpha());
185 return String::format("#%02X%02X%02X", red(), green(), blue());
282 int b = (blue() * alpha() * (255 - source.alpha()) + 255 * source.alpha() * source.blue()) / d;
298 int b = blendComponent(blue(), alpha);
312 b = blue() / 255.0f;
320 b = blue() / 255.0;
331 double b = static_cast<double>(blue()) / 255.0
    [all...]
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 80 CGFloat red, green, blue, alpha; local
81 graphicsContext->fillColor().getRGBA(red, green, blue, alpha);
82 CGContextSetRGBFillColor(cgContext, red, green, blue, alpha);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
TextInputController.m 74 || aSelector == @selector(addColorAttribute:red:green:blue:alpha:)
75 || aSelector == @selector(addColorAttribute:red:green:blue:alpha:from:length:)
94 if (aSelector == @selector(addColorAttribute:red:green:blue:alpha:))
96 if (aSelector == @selector(addColorAttribute:red:green:blue:alpha:from:length:))
132 - (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha
134 [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange(0, [self length])];
137 - (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha from:(int)from length:(int)lengt
    [all...]
  /frameworks/base/opengl/libs/GLES_CM/
gl_api.in 4 void API_ENTRY(glClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) {
5 CALL_GL_API(glClearColor, red, green, blue, alpha);
13 void API_ENTRY(glColor4f)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) {
14 CALL_GL_API(glColor4f, red, green, blue, alpha);
139 void API_ENTRY(glClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) {
140 CALL_GL_API(glClearColorx, red, green, blue, alpha);
154 void API_ENTRY(glColor4ub)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) {
155 CALL_GL_API(glColor4ub, red, green, blue, alpha);
157 void API_ENTRY(glColor4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) {
158 CALL_GL_API(glColor4x, red, green, blue, alpha)
    [all...]
  /system/core/include/pixelflinger/
format.h 91 BLUE = GGL_INDEX_BLUE,
115 uint8_t bh; // blue high bit position + 1
116 uint8_t bl; // blue low bit position
  /external/webkit/WebCore/manual-tests/
css3-cursor-fallback-quirks.html 5 <p>Move the cursor over the blue box - it should not turn into a missing image icon, and should turn into an I-beam over text.</p>
13 <p>In each of the blue boxes below, the cursor should become a help cursor (question mark).</p>
22 <p>In each of the blue boxes below, the cursor should remain the default cursor, since all cursor definitions are invalid in quirks mode.</p>
27 <p>In each of the blue boxes below, the cursor should show the text cursor, since they contain invalid hotspots.</p>
34 <p>In each of the blue boxes below, the cursor should show the help, since they contain valid hotspots.</p>
57 <p>In each of the blue boxes below, the hotspot is out-of-range. In quirks mode we do not support hotspots at all, so we show the fallback cursor(text).</p>
interrupted-compound-transform.html 20 background-color: blue;
65 In this test you should see a blue diamond spinning in the clockwise direction. After 1.5 seconds it should stop
simple-image-compositing.html 48 <img src="resources/simple_image.png" style="border: 5px solid blue;">
49 5px blue border - can NOT be directly composited
  /external/webkit/WebCore/platform/graphics/wince/
ImageBufferWince.cpp 128 int blue = *src++; local
135 *dst++ = static_cast<unsigned char>((blue * alpha + 254) / 255);
140 *dst++ = static_cast<unsigned char>(blue);
188 int blue = *src++; local
191 *dst++ = static_cast<unsigned char>(blue * 255 / alpha);
196 *dst++ = static_cast<unsigned char>(blue);
  /cts/tests/res/layout/
textview_layout.xml 27 android:textColorLink="@drawable/blue"
48 android:drawableRight="@drawable/blue"
  /development/apps/FontLab/src/com/android/fontlab/
BackgroundPicker.java 51 addItem(myData, "Solid Blue", 0, 0xFF1a387a, 0xFFFFFFFF);
53 // addItem(myData, "Textured Blue", android.R.drawable.screen_background_blue, 0, 0xFFFFFFFF);
  /external/bluetooth/bluez/scripts/
bluetooth-serial.rules 25 # H-Soft blue+Card
26 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="H-Soft", ATTRS{prod_id2}=="Blue+CARD", ENV{HCIOPTS}="$sysfs{manf_id},$sysfs{card_id}", RUN+="bluetooth_serial"
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 210 float red, green, blue, alpha; local
223 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
226 shadowFillColor.getRGBA(red, green, blue, alpha);
227 cairo_set_source_rgba(cr, red, green, blue, alpha);
241 fillColor.getRGBA(red, green, blue, alpha);
242 cairo_set_source_rgba(cr, red, green, blue, alpha);
253 strokeColor.getRGBA(red, green, blue, alpha);
254 cairo_set_source_rgba(cr, red, green, blue, alpha);
  /external/webkit/WebCore/platform/graphics/wx/
PenWx.cpp 67 setColor(Color(color.Red(), color.Green(), color.Blue()));
74 return wxPen(wxColour(m_color.red(), m_color.blue(), m_color.green()), width(), penStyleToWxPenStyle(style()));
  /development/samples/GlobalTime/src/com/android/globaltime/
GLView.java 155 * <li> lab - ambient light blue channel
159 * <li> ldb - diffuse light blue channel
163 * <li> lsb - specular light blue channel
167 * <li> lmab - light model ambient blue channel
242 "Ambient Blue",
246 "Diffuse Blue",
250 "Specular Blue",
254 "Light Model Ambient Blue",
330 * green, and blue channels passed to glLightfv(...GL_AMBIENT...).
343 * green, and blue channels passed t
    [all...]
  /frameworks/base/awt/java/awt/
Color.java 178 * The color blue.
180 public static final Color blue = new Color(0, 0, 255); field in class:Color
183 * The color blue.
185 public static final Color BLUE = blue;
282 * bits 16-23, the green component in bits 8-15, and the blue component in
301 * Instantiates a new color with the specified red, green, blue and alpha
309 * the blue component.
323 * blue values. The Alpha component is set to the default - 1.0.
330 * the blue component
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-x.c 212 { 0, 0, 255}, /* 6: blue */
213 { 0, 0, 120}, /* 7: medium blue */
221 { 85, 125, 200}, /* 15: ice blue */
251 {0+8, 2,0, 1,15}, /* checkered: tan/black vs. white/ice blue */
254 {0+8, 4,5, 0,6}, /* checkered: gold/yellow vs. black/blue */
255 {0, 7,0, 8,9}, /* checkered: deep blue/black vs. magenta */
258 {1, 7,0, 8,0}, /* diamonds: deep blue/black vs. magenta */
260 {1, 10,0, 7,0}, /* diamonds: red vs. medium blue */
1217 double red=0.0, green=0.0, blue=0.0, hue, s, v, f, p, q, t; local
1294 ulg red, green, blue; local
1333 ush red, green, blue; local
1419 ulg red, green, blue; local
1495 ush red, green, blue; local
1639 ulg red, green, blue; local
1767 ush red, green, blue; local
1986 double red=0.0, green=0.0, blue=0.0, hue, s, v, f, p, q, t; local
    [all...]
  /external/opencore/extern_libs_v2/khronos/openmax/include/
OMX_IVCommon.h 73 * 8bitRGB332 : Red 7:5, Green 4:2, Blue 1:0
74 * 12bitRGB444 : Red 11:8, Green 7:4, Blue 3:0
75 * 16bitARGB4444 : Alpha 15:12, Red 11:8, Green 7:4, Blue 3:0
76 * 16bitARGB1555 : Alpha 15, Red 14:10, Green 9:5, Blue 4:0
77 * 16bitRGB565 : Red 15:11, Green 10:5, Blue 4:0
78 * 16bitBGR565 : Blue 15:11, Green 10:5, Red 4:0
79 * 18bitRGB666 : Red 17:12, Green 11:6, Blue 5:0
80 * 18bitARGB1665 : Alpha 17, Red 16:11, Green 10:5, Blue 4:0
81 * 19bitARGB1666 : Alpha 18, Red 17:12, Green 11:6, Blue 5:0
82 * 24bitRGB888 : Red 24:16, Green 15:8, Blue 7:
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_IVCommon.h 56 * 8bitRGB332 : Red 7:5, Green 4:2, Blue 1:0
57 * 12bitRGB444 : Red 11:8, Green 7:4, Blue 3:0
58 * 16bitARGB4444 : Alpha 15:12, Red 11:8, Green 7:4, Blue 3:0
59 * 16bitARGB1555 : Alpha 15, Red 14:10, Green 9:5, Blue 4:0
60 * 16bitRGB565 : Red 15:11, Green 10:5, Blue 4:0
61 * 16bitBGR565 : Blue 15:11, Green 10:5, Red 4:0
62 * 18bitRGB666 : Red 17:12, Green 11:6, Blue 5:0
63 * 18bitARGB1665 : Alpha 17, Red 16:11, Green 10:5, Blue 4:0
64 * 19bitARGB1666 : Alpha 18, Red 17:12, Green 11:6, Blue 5:0
65 * 24bitRGB888 : Red 24:16, Green 15:8, Blue 7:0
    [all...]
  /external/zlib/old/
zlib.html 133 <font color="Blue"><dt> int <a name="compress">compress</a> (Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen);</font>
146 <font color="Blue"><dt> int <a name="compress2">compress2</a> (Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int level);</font>
160 <font color="Blue"><dt> int <a name="uncompress">uncompress</a> (Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen);</font>
181 <font color="Blue"><dt> gzFile <a name="gzopen">gzopen</a> (const char *path, const char *mode);</font>
200 <font color="Blue"><dt> gzFile <a name="gzdopen">gzdopen</a> (int fd, const char *mode);</font>
215 <font color="Blue"><dt> int <a name="gzsetparams">gzsetparams</a> (gzFile file, int level, int strategy);</font>
224 <font color="Blue"><dt> int <a name="gzread">gzread</a> (gzFile file, voidp buf, unsigned len);</font>
234 <font color="Blue"><dt> int <a name="gzwrite">gzwrite</a> (gzFile file, const voidp buf, unsigned len);</font>
241 <font color="Blue"><dt> int VA <a name="gzprintf">gzprintf</a> (gzFile file, const char *format, ...);</font>
248 <font color="Blue"><dt> int <a name="gzputs">gzputs</a> (gzFile file, const char *s);</font
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 137 // overwrite (0,0) with a blue dot
138 paint.setColor(Color.BLUE);
143 // first pixel is BLUE, rest of the line is RED
144 assertEquals(Color.BLUE, bitmap.getPixel(0, 0));
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
MockEnum2.java 30 RED, BLUE, YELLO
  /development/samples/ApiDemos/res/layout/
linear_layout_4.xml 39 android:background="@drawable/blue"
list_7.xml 33 android:background="@drawable/blue"/>

Completed in 78 milliseconds

1 2 34 5 6 7 8 91011>>