HomeSort by relevance Sort by last modified time
    Searched refs:red (Results 201 - 225 of 288) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/proguard/src/proguard/gui/
ClassPathPanel.java 408 // Make the font color red if this is an input file that can't be read.
412 jarNameLabel.setForeground(Color.red);
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_glfuncs.h 49 SDL_PROC_UNUSED(void,glColor4ub,(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha))
51 SDL_PROC_UNUSED(void,glColor4ui,(GLuint red, GLuint green, GLuint blue, GLuint alpha))
53 SDL_PROC_UNUSED(void,glColor4us,(GLushort red, GLushort green, GLushort blue, GLushort alpha))
55 SDL_PROC_UNUSED(void,glColorMask,(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha))
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 71 float red, green, blue, alpha; local
72 col.getRGBA(red, green, blue, alpha);
73 cairo_set_source_rgba(cr, red, green, blue, alpha);
644 Color ringColor(color.red(), color.green(), color.blue(), 127);
686 // Convention is green for grammar, red for spelling
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContext3DMac.cpp 287 void GraphicsContext3D::blendColor(double red, double green, double blue, double alpha)
290 ::glBlendColor(static_cast<float>(red), static_cast<float>(green), static_cast<float>(blue), static_cast<float>(alpha));
371 void GraphicsContext3D::colorMask(bool red, bool green, bool blue, bool alpha)
374 ::glColorMask(red, green, blue, alpha);
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayer.h 106 return RetainPtr<CFTypeRef>(AdoptCF, CGColorCreateGenericRGB(color.red(), color.green(), color.blue(), color.alpha()));
  /external/webkit/WebCore/rendering/
RenderMediaControlsChromium.cpp 138 gradient->addColorStop(1.0, Color(startColor.red() / 2, startColor.green() / 2, startColor.blue() / 2, startColor.alpha()));