HomeSort by relevance Sort by last modified time
    Searched refs:m_color (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBackgroundData.cpp 32 , m_color(RenderStyle::initialBackgroundColor())
39 , m_color(o.m_color)
46 return m_background == o.m_background && m_color == o.m_color && m_outline == o.m_outline;
51 return m_background == o.m_background && m_color == o.m_color && m_outline.visuallyEqual(o.m_outline);
AppliedTextDecoration.cpp 13 , m_color(color)
20 , m_color(StyleColor::currentColor())
27 , m_color(StyleColor::currentColor())
33 return m_color == o.m_color && m_line == o.m_line && m_style == o.m_style;
BorderValue.h 38 : m_color(0)
53 return !m_colorIsCurrentColor && !m_color.alpha();
63 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_colorIsCurrentColor == o.m_colorIsCurrentColor;
83 m_color = color.resolve(Color());
87 StyleColor color() const { return m_colorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_color); }
95 Color m_color; member in class:blink::BorderValue
AppliedTextDecoration.h 22 bool isSimpleUnderline() const { return m_line == TextDecorationUnderline && m_style == TextDecorationStyleSolid && m_color.isCurrentColor(); }
29 StyleColor m_color; member in class:blink::AppliedTextDecoration
ShadowData.h 43 , m_color(color)
59 const Color& color() const { return m_color; }
66 Color m_color; member in class:blink::ShadowData
ShadowData.cpp 35 && m_color == o.m_color;
StyleBackgroundData.h 51 const StyleColor& color() const { return m_color; }
61 StyleColor m_color; member in class:blink::StyleBackgroundData
CollapsedBorderValue.h 35 : m_color(0)
45 : m_color(color.resolve(Color()))
57 StyleColor color() const { return m_colorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_color); }
67 Color m_color; member in class:blink::CollapsedBorderValue
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceSolidColor.h 42 const Color& color() const { return m_color; }
43 void setColor(const Color& color) { m_color = color; }
46 Color m_color; member in class:blink::FINAL
RenderSVGResourceSolidColor.cpp 61 context->setFillColor(m_color);
71 context->setStrokeColor(m_color);
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleColor.h 40 StyleColor(Color color) : m_color(color), m_currentColor(false) { }
44 Color color() const { ASSERT(!isCurrentColor()); return m_color; }
46 Color resolve(Color currentColor) const { return m_currentColor ? currentColor : m_color; }
50 Color m_color; member in class:blink::StyleColor
CSSGradientValue.h 60 RefPtrWillBeMember<CSSPrimitiveValue> m_color; member in struct:blink::CSSGradientColorStop
65 return compareCSSValuePtr(m_color, other.m_color)
CSSGradientValue.cpp 48 visitor->trace(m_color);
118 if (m_stops[i].m_color->colorIsDerivedFromElement()) {
137 result->m_stops[i].m_resolvedColor = textLinkColors.colorFromPrimitiveValue(result->m_stops[i].m_color.get(), currentColor);
507 result.append(stop.m_color->cssText());
511 result.append(stop.m_color->cssText());
517 result.append(stop.m_color->cssText());
546 result.append(stop.m_color->cssText());
583 result.append(stop.m_color->cssText());
792 result.append(stop.m_color->cssText());
796 result.append(stop.m_color->cssText())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableColor.h 62 Color color() const { return m_color.toColor(); }
72 : m_color(color)
79 const AnimatableColorImpl m_color; member in class:blink::FINAL
AnimatableSVGPaint.h 59 Color color() const { return m_color->color(); };
60 Color visitedLinkColor() const { return m_color->visitedLinkColor(); };
66 visitor->trace(m_color);
78 , m_color(color)
89 RefPtrWillBeMember<AnimatableColor> m_color; member in class:blink::FINAL
AnimatableColor.cpp 103 return create(m_color.interpolateTo(color->m_color, fraction),
110 return m_color == color->m_color && m_visitedLinkColor == color->m_visitedLinkColor;
116 return m_color.distanceTo(color->m_color);
AnimatableSVGPaint.cpp 49 RefPtrWillBeRawPtr<AnimatableColor> color = toAnimatableColor(AnimatableValue::interpolate(m_color.get(), svgPaint->m_color.get(), fraction).get());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Color.h 65 Color() : m_color(Color::transparent) { }
66 Color(RGBA32 color) : m_color(color) { }
67 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)) { }
68 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)) { }
70 Color(float r, float g, float b, float a) : m_color(makeRGBA32FromFloats(r, g, b, a)) { }
72 Color(float c, float m, float y, float k, float a) : m_color(makeRGBAFromCMYKA(c, m, y, k, a)) { }
104 int red() const { return redChannel(m_color); }
105 int green() const { return greenChannel(m_color); }
106 int blue() const { return blueChannel(m_color); }
107 int alpha() const { return alphaChannel(m_color); }
137 RGBA32 m_color; member in class:blink::Color
    [all...]
Color.cpp 185 return parseHexColor(name.characters8() + 1, name.length() - 1, m_color);
186 return parseHexColor(name.characters16() + 1, name.length() - 1, m_color);
277 m_color = foundColor ? foundColor->ARGBValue : 0;
284 if (m_color == black)
309 if (m_color == white)
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeOverlay.h 65 Color m_color; member in class:blink::ScrollbarThemeOverlay
ScrollbarThemeOverlay.cpp 46 , m_color(color)
135 context->fillRect(thumbRect, m_color);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.h 281 Color color() const { return m_color; }
294 return m_location == other->m_location && m_stdDeviation == other->m_stdDeviation && m_color == other->m_color;
301 , m_color(color)
307 Color m_color; member in class:blink::DropShadowFilterOperation
FilterOperation.cpp 135 blink::blend(Color(Color::transparent), m_color, progress));
142 blink::blend(fromOp->color(), m_color, progress));
  /external/deqp/modules/gles2/functional/
es2fColorClearTest.cpp 91 : m_rect(rect), m_colorMask(colorMask), m_color(color)
97 tcu::RGBA m_color; member in class:deqp::gles2::Functional::ClearInfo
200 tcu::RGBA clearCol = op.m_color;
  /external/deqp/modules/gles3/functional/
es3fColorClearTest.cpp 91 : m_rect(rect), m_colorMask(colorMask), m_color(color)
97 tcu::RGBA m_color; member in class:deqp::gles3::Functional::ClearInfo
200 tcu::RGBA clearCol = op.m_color;

Completed in 490 milliseconds

1 2