makeRGB 5182 Source/core/css/parser/CSSPropertyParser.cpp rgb = makeRGB(red, green, blue); makeRGB 5360 Source/core/css/parser/CSSPropertyParser.cpp c = makeRGB(colorValues[0], colorValues[1], colorValues[2]); makeRGB 862 Source/core/html/HTMLElement.cpp return makeRGB(toASCIIHexValue(digitBuffer[0]), toASCIIHexValue(digitBuffer[1]), toASCIIHexValue(digitBuffer[2])); makeRGB 886 Source/core/html/HTMLElement.cpp return makeRGB(redValue, greenValue, blueValue); makeRGB 40 Source/platform/graphics/Color.h PLATFORM_EXPORT RGBA32 makeRGB(int r, int g, int b); makeRGB 67 Source/platform/graphics/Color.h Color(int r, int g, int b) : m_color(makeRGB(r, g, b)) { } makeRGB 110 Source/platform/graphics/Color.h void setRGB(int r, int g, int b) { m_color = makeRGB(r, g, b); }