HomeSort by relevance Sort by last modified time
    Searched refs:makeRGBA (Results 1 - 13 of 13) sorted by null

  /external/webkit/WebCore/platform/graphics/haiku/
ColorHaiku.cpp 37 : m_color(makeRGBA(color.red, color.green, color.blue, color.alpha))
  /external/webkit/WebCore/platform/graphics/qt/
ColorQt.cpp 36 : m_color(makeRGBA(c.red(), c.green(), c.blue(), c.alpha()))
  /external/webkit/WebCore/platform/graphics/wx/
ColorWx.cpp 36 m_color = makeRGBA((int)color.Red(), (int)color.Green(), (int)color.Blue(), (int)color.Alpha());
  /external/webkit/WebCore/platform/graphics/cg/
ColorCG.cpp 68 m_color = makeRGBA(r * 255, g * 255, b * 255, a * 255);
  /external/webkit/WebCore/platform/graphics/
Color.h 63 RGBA32 makeRGBA(int r, int g, int b, int a);
77 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)), m_valid(true) { }
Color.cpp 58 RGBA32 makeRGBA(int r, int g, int b, int a)
107 return makeRGBA(greyValue, greyValue, greyValue, static_cast<int>(alpha * scaleFactor));
113 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor),
125 return makeRGBA(r, g, b, static_cast<float>(nextafter(256, 0) * a));
364 rgba = makeRGBA(((pixelColor & 0x00FF0000) >> 16) * 255 / alpha,
  /external/webkit/WebCore/platform/graphics/mac/
ColorMac.mm 61 return makeRGBA(255 * redComponent, 255 * greenComponent, 255 * blueComponent, 255 * alpha);
  /external/webkit/WebCore/platform/mac/
DragDataMac.mm 99 return makeRGBA((int)([color redComponent] * 255.0 + 0.5), (int)([color greenComponent] * 255.0 + 0.5),
  /external/webkit/WebCore/svg/
SVGGradientElement.cpp 181 stops.append(makeGradientStop(stopOffset, makeRGBA(color.red(), color.green(), color.blue(), int(opacity * 255.))));
  /external/webkit/WebKit/mac/Misc/
WebKitNSStringExtras.mm 96 graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255), DeviceColorSpace);
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp     [all...]
  /external/webkit/WebCore/rendering/
RenderThemeSafari.cpp 108 return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]);
    [all...]
  /external/webkit/WebCore/css/
CSSParser.cpp     [all...]

Completed in 687 milliseconds