Home
last modified time | relevance | path

Searched refs:makeRGB (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DColor.h40 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()
DColor.cpp51 RGBA32 makeRGB(int r, int g, int b) in makeRGB() function
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLElement.cpp852 …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/
DRenderThemeChromiumMac.mm307 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/
DCSSPropertyParser.cpp5112 rgb = makeRGB(red, green, blue); in fastParseColorInternal()
5283 c = makeRGB(colorValues[0], colorValues[1], colorValues[2]); in parseColorFromValue()