Searched refs:makeRGB (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | Color.h | 40 PLATFORM_EXPORT RGBA32 makeRGB(int r, int g, int b); 67 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)) { } in Color() 110 void setRGB(int r, int g, int b) { m_color = makeRGB(r, g, b); } in setRGB()
|
D | Color.cpp | 51 RGBA32 makeRGB(int r, int g, int b) in makeRGB() function
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLElement.cpp | 852 …return makeRGB(toASCIIHexValue(digitBuffer[0]), toASCIIHexValue(digitBuffer[1]), toASCIIHexValue(d… in parseColorStringWithCrazyLegacyRules() 876 return makeRGB(redValue, greenValue, blueValue); in parseColorStringWithCrazyLegacyRules()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderThemeChromiumMac.mm | 307 return makeRGB(static_cast<int>(scaleFactor * [colorInColorSpace redComponent]), 339 return makeRGB(pixel[0], pixel[1], pixel[2]); 367 return makeRGB(pixel[0], pixel[1], pixel[2]);
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSPropertyParser.cpp | 5112 rgb = makeRGB(red, green, blue); in fastParseColorInternal() 5283 c = makeRGB(colorValues[0], colorValues[1], colorValues[2]); in parseColorFromValue()
|