makeRGBA         5163 Source/core/css/parser/CSSPropertyParser.cpp         rgb = makeRGBA(red, green, blue, alpha);
makeRGBA         5369 Source/core/css/parser/CSSPropertyParser.cpp             c = makeRGBA(colorValues[0], colorValues[1], colorValues[2], colorValues[3]);
makeRGBA           88 Source/core/svg/SVGAnimatedColor.cpp     m_styleColor = StyleColor(makeRGBA(roundf(animatedRed), roundf(animatedGreen), roundf(animatedBlue), roundf(animatedAlpha)));
makeRGBA          105 Source/platform/graphics/Color.cpp         return makeRGBA(greyValue, greyValue, greyValue, static_cast<int>(alpha * scaleFactor));
makeRGBA          111 Source/platform/graphics/Color.cpp     return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor),
makeRGBA          123 Source/platform/graphics/Color.cpp     return makeRGBA(r, g, b, static_cast<float>(nextafter(256, 0) * a));
makeRGBA           41 Source/platform/graphics/Color.h PLATFORM_EXPORT RGBA32 makeRGBA(int r, int g, int b, int a);
makeRGBA           68 Source/platform/graphics/Color.h     Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)) { }