HomeSort by relevance Sort by last modified time
    Searched defs:m_color (Results 1 - 7 of 7) sorted by null

  /external/webkit/WebCore/svg/graphics/
SVGPaintServerSolid.h 53 Color m_color; member in class:WebCore::SVGPaintServerSolid
  /external/webkit/WebCore/platform/graphics/
Pen.h 67 Color m_color; member in class:WebCore::Pen
Color.h 74 Color() : m_color(0), m_valid(false) { }
75 Color(RGBA32 col) : m_color(col), m_valid(true) { }
76 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)), m_valid(true) { }
77 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)), m_valid(true) { }
79 Color(float r, float g, float b, float a) : m_color(makeRGBA32FromFloats(r, g, b, a)), m_valid(true) { }
81 Color(float c, float m, float y, float k, float a) : m_color(makeRGBAFromCMYKA(c, m, y, k, a)), m_valid(true) { }
92 int red() const { return (m_color >> 16) & 0xFF; }
93 int green() const { return (m_color >> 8) & 0xFF; }
94 int blue() const { return m_color & 0xFF; }
95 int alpha() const { return (m_color >> 24) & 0xFF;
148 RGBA32 m_color; member in class:WebCore::Color
    [all...]
  /external/webkit/WebCore/rendering/style/
StyleBackgroundData.h 49 Color m_color; member in class:WebCore::StyleBackgroundData
  /external/webkit/WebCore/svg/
SVGColor.h 86 Color m_color; member in class:WebCore::SVGColor
  /external/webkit/WebCore/css/
CSSGradientValue.h 48 RefPtr<CSSPrimitiveValue> m_color; member in struct:WebCore::CSSGradientColorStop
  /external/webkit/WebCore/html/canvas/
CanvasStyle.h 48 String color() const { return m_color; }
69 String m_color; member in class:WebCore::CanvasStyle

Completed in 187 milliseconds