Searched defs:blue (Results 1 - 25 of 140) sorted by relevance

123456

/external/clang/test/CodeGenCXX/
H A Dscoped-enums.cpp4 enum class Color { red, blue, green }; member in class:Color
H A D2007-04-10-PackedUnion.cpp10 float blue; member in struct:ABCS
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRGBColor.cpp54 PassRefPtr<CSSPrimitiveValue> RGBColor::blue() function in class:WebCore::RGBColor
H A DStyleColor.h82 int blue() const { return m_color.blue(); } function in class:WebCore::StyleColor
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Daccum.h50 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
66 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) argument
/external/clang/test/Sema/
H A Dattr-deprecated-message.c18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' declared here}} enumerator in enum:__anon17178
/external/mesa3d/src/mesa/main/
H A Daccum.h50 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
66 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) argument
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gamma.c33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue) argument
57 if ( blue < MIN_GAMMA ) {
58 gamma.blue = MIN_GAMMA;
60 if ( blue > MAX_GAMMA ) {
61 gamma.blue = MAX_GAMMA;
63 gamma.blue = blue;
71 gamma_saved[2] = gamma.blue;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue) argument
88 result = X11_SetGammaNoLock(this, red, green, blue);
94 X11_GetGammaNoLock(_THIS, float *red, float *green, float *blue) argument
110 X11_GetVidModeGamma(_THIS, float *red, float *green, float *blue) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowColor.java11 public static int rgb(int red, int green, int blue) { argument
12 return argb(0xff, red, green, blue);
16 public static int argb(int alpha, int red, int green, int blue) { argument
17 return (alpha << 24) | (red << 16) | (green << 8) | blue;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableColor.cpp39 AnimatableColorImpl::AnimatableColorImpl(float red, float green, float blue, float alpha) argument
43 , m_blue(clampTo(blue, 0.0f, 1.0f))
51 , m_blue(color.blue() / 255.0f * m_alpha)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DColorDistance.cpp38 , m_blueDiff(toColor.blue() - fromColor.blue())
58 Color ColorDistance::clampColor(int red, int green, int blue, int alpha) argument
60 return Color(clampColorValue(red), clampColorValue(green), clampColorValue(blue), clampColorValue(alpha));
65 return Color(first.red() + second.red(), first.green() + second.green(), first.blue() + second.blue());
H A DSVGFEComponentTransferElement.cpp87 ComponentTransferFunction blue; local
96 blue = toSVGFEFuncBElement(node)->transferFunction();
101 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha);
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_pixeltest_readback.cc142 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
144 green->AddChild(blue);
160 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
162 green->AddChild(blue);
178 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
180 green->AddChild(blue);
288 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
290 green->AddChild(blue);
308 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
310 green->AddChild(blue);
327 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
351 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
376 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
401 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
426 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
451 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
476 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
496 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
517 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
538 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
559 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
581 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
603 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
671 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
702 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
734 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
767 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
866 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
898 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
930 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
962 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local
992 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DShortcutHelper.java62 int red, int green, int blue, boolean isWebappCapable) {
86 favicon, red, green, blue));
61 addShortcut(Context context, String url, String title, Bitmap favicon, int red, int green, int blue, boolean isWebappCapable) argument
/external/chromium_org/gpu/command_buffer/tests/
H A Docclusion_query_unittests.cc118 static float blue[] = { 0.0f, 0.0f, 1.0f, 1.0f }; local
119 DrawRect(-0.125f, 0.1f, 0.25f, blue);
135 DrawRect(-0.125f, 0.1f, 0.25f, blue);
/external/clang/test/SemaTemplate/
H A Dinstantiate-c99.cpp31 unsigned char red, green, blue; member in struct:Color
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DTGALoader.java185 entry.blue = (byte)(int)(getBitsAsByte(cMapData, offset+(2*bitsPerColor), bitsPerColor) * scalar);
213 byte blue = 0;
250 // blue = dis.readByte();
255 // rawData[rawDataIndex++] = blue;
265 blue = dis.readByte();
271 rawData[rawDataIndex++] = blue;
282 byte blue = 0;
299 blue = dis.readByte();
306 rawData[rawDataIndex++] = blue;
313 blue
510 byte red, green, blue, alpha; field in class:TGALoader.ColorMapEntry
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DImageBasedHeightMap.java89 protected float calculateHeight(float red, float green, float blue) { argument
90 return (float) (0.299 * red + 0.587 * green + 0.114 * blue);
/external/jpeg/
H A Dwrrle.c176 rle_pixel **rle_row, *red, *green, *blue; local
243 blue = rle_row[2];
247 *blue++ = GETJSAMPLE(*output_row++);
/external/libpng/contrib/gregbook/
H A Dreadppm.c133 int readpng_get_bgcolor(uch *red, uch *green, uch *blue) argument
/external/qemu/distrib/jpeg-6b/
H A Dwrrle.c176 rle_pixel **rle_row, *red, *green, *blue; local
243 blue = rle_row[2];
247 *blue++ = GETJSAMPLE(*output_row++);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_gamma.c93 int SDL_SetGamma(float red, float green, float blue) argument
106 CalculateGammaRamp(blue, ramp[2]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue) argument
134 CalculateGammaFromRamp(blue, ramp[2]);
139 succeeded = video->GetGamma(this, red, green, blue);
144 int SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue) argument
169 if ( blue ) {
170 SDL_memcpy(&video->gamma[2*256], blue, 256*sizeof(*video->gamma));
196 int SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue) argument
[all...]
/external/skia/bench/
H A DTileBench.cpp20 float blue = 255.0f; local
24 *bm->getAddr32(0, y) = SkColorSetRGB(0, 0, (U8CPU) blue);
25 blue -= deltaB;
/external/skia/gm/
H A Dtexdata.cpp50 static const SkPMColor blue = SkPackARGB32(0x80, 0x00, 0x00, 0x80); local
126 ((x + y) % 2) ? (i ? green : red) : blue;
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dskia_utils_gtk2.cc24 return SkColorSetRGB(color.red >> 8, color.green >> 8, color.blue >> 8);
64 const unsigned char& blue = gdk_pixels[2]; local
67 skia_data[i] = SkPreMultiplyARGB(alpha, red, green, blue);
81 const unsigned char& blue = pixel[2]; local
83 skia_data[y * w + x] = SkPreMultiplyARGB(255, red, green, blue);

Completed in 1380 milliseconds

123456