Searched refs:makeRGB (Results 1 – 9 of 9) sorted by relevance
/external/webkit/WebCore/platform/graphics/ |
D | Color.h | 57 RGBA32 makeRGB(int r, int g, int b); 71 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)), m_valid(true) { } in Color() 93 void setRGB(int r, int g, int b) { m_color = makeRGB(r, g, b); m_valid = true; } in setRGB()
|
D | Color.cpp | 53 RGBA32 makeRGB(int r, int g, int b) in makeRGB() function
|
/external/webkit/WebCore/platform/graphics/gtk/ |
D | ColorGtk.cpp | 28 : m_color(makeRGB(c.red >> 8, c.green >> 8, c.blue >> 8)) in Color()
|
/external/webkit/WebCore/platform/android/ |
D | RenderThemeAndroid.cpp | 55 const RGBA32 SELECTION_COLOR = makeRGB(255, 146, 0);
|
/external/webkit/WebCore/rendering/ |
D | RenderThemeMac.mm | 267 return makeRGB(static_cast<int>(scaleFactor * [colorInColorSpace redComponent]), 299 return makeRGB(pixel[0], pixel[1], pixel[2]); 327 return makeRGB(pixel[0], pixel[1], pixel[2]);
|
D | RenderThemeChromiumMac.mm | 277 return makeRGB(static_cast<int>(scaleFactor * [colorInColorSpace redComponent]), 309 return makeRGB(pixel[0], pixel[1], pixel[2]); 337 return makeRGB(pixel[0], pixel[1], pixel[2]);
|
D | RenderLayer.cpp | 1883 context->setStrokeColor(Color(makeRGB(217, 217, 217))); in paintResizer()
|
/external/webkit/WebCore/css/ |
D | CSSParser.cpp | 3513 c = makeRGB(colorValues[0], colorValues[1], colorValues[2]); in parseColorFromValue()
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-05-10 | 7787 (WebCore::makeRGB): Rewrote using max and min. 28640 (WebCore::makeRGB):
|