Searched refs:makeRGBA (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | Color.cpp | 56 RGBA32 makeRGBA(int r, int g, int b, int a) in makeRGBA() function 105 return makeRGBA(greyValue, greyValue, greyValue, static_cast<int>(alpha * scaleFactor)); in makeRGBAFromHSLA() 111 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor), in makeRGBAFromHSLA() 123 return makeRGBA(r, g, b, static_cast<float>(nextafter(256, 0) * a)); in makeRGBAFromCMYKA()
|
D | Color.h | 41 PLATFORM_EXPORT RGBA32 makeRGBA(int r, int g, int b, int a); 68 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)) { } in Color()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGAnimatedColor.cpp | 88 …m_styleColor = StyleColor(makeRGBA(roundf(animatedRed), roundf(animatedGreen), roundf(animatedBlue… in calculateAnimatedValue()
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSPropertyParser.cpp | 5093 rgb = makeRGBA(red, green, blue, alpha); in fastParseColorInternal() 5292 c = makeRGBA(colorValues[0], colorValues[1], colorValues[2], colorValues[3]); in parseColorFromValue()
|