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

  /external/webkit/Source/WebCore/platform/graphics/android/
BaseLayerAndroid.h 51 void setBackgroundColor(Color& color) { m_color = color; }
52 Color getBackgroundColor() { return m_color; }
82 Color m_color; member in class:WebCore::BaseLayerAndroid
  /external/webkit/Source/WebCore/rendering/style/
BorderValue.h 49 return m_color.isValid() && !m_color.alpha();
59 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color;
67 const Color& color() const { return m_color; }
72 Color m_color; member in class:WebCore::BorderValue
StyleBackgroundData.h 49 const Color& color() const { return m_color; }
59 Color m_color; member in class:WebCore::StyleBackgroundData
ShadowData.h 58 , m_color(color)
79 const Color& color() const { return m_color; }
93 Color m_color; member in class:WebCore::ShadowData
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceSolidColor.h 45 const Color& color() const { return m_color; }
46 void setColor(const Color& color) { m_color = color; }
49 Color m_color; member in class:WebCore::RenderSVGResourceSolidColor
  /external/webkit/Source/WebCore/svg/
SVGColor.h 62 const Color& color() const { return m_color; }
79 void setColor(const Color& color) { m_color = color; }
85 Color m_color; member in class:WebCore::SVGColor
  /external/webkit/Source/WebCore/platform/graphics/
ContextShadow.h 81 Color m_color; member in class:WebCore::ContextShadow
ShadowBlur.h 88 Color m_color; member in class:WebCore::ShadowBlur
Color.h 84 Color() : m_color(0), m_valid(false) { }
85 Color(RGBA32 col) : m_color(col), m_valid(true) { }
86 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)), m_valid(true) { }
87 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)), m_valid(true) { }
89 Color(float r, float g, float b, float a) : m_color(makeRGBA32FromFloats(r, g, b, a)), m_valid(true) { }
91 Color(float c, float m, float y, float k, float a) : m_color(makeRGBAFromCMYKA(c, m, y, k, a)), m_valid(true) { }
109 int red() const { return redChannel(m_color); }
110 int green() const { return greenChannel(m_color); }
111 int blue() const { return blueChannel(m_color); }
112 int alpha() const { return alphaChannel(m_color); }
177 RGBA32 m_color; member in class:WebCore::Color
    [all...]
  /external/webkit/Source/WebCore/css/
CSSGradientValue.h 44 RefPtr<CSSPrimitiveValue> m_color; member in struct:WebCore::CSSGradientColorStop
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODRedBlackTree.h 209 , m_color(Red)
216 Color color() const { return m_color; }
217 void setColor(Color color) { m_color = color; }
243 Color m_color; member in class:WebCore::PODRedBlackTree::Node

Completed in 267 milliseconds