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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
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
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
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
StyleBackgroundData.h 51 const StyleColor& color() const { return m_color; }
61 StyleColor m_color; member in class:blink::StyleBackgroundData
ShadowData.h 43 , m_color(color)
59 const Color& color() const { return m_color; }
66 Color m_color; member in class:blink::ShadowData
RenderStyle.cpp 48 RGBA32 m_color; member in struct:blink::SameSizeAsBorderValue
    [all...]
  /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
  /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
  /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)
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeOverlay.h 65 Color m_color; member in class:blink::ScrollbarThemeOverlay
  /external/deqp/modules/gles31/functional/
es31fSampleVariableTests.cpp 59 : m_color (tcu::Vec4(_color.x(), _color.y(), _color.z(), 1.0f))
65 : m_color (tcu::Vec4(_color.x(), _color.y(), _color.z(), 1.0f))
73 return !tcu::boolAny(tcu::greaterThan(tcu::abs(m_color.toIVec().swizzle(0, 1, 2) - testColor.toIVec().swizzle(0, 1, 2)), tcu::IVec3(m_threshold)));
81 << ((m_threshold[0] >= 255) ? ("*") : (de::toString(m_color.getRed()))) << ", "
82 << ((m_threshold[1] >= 255) ? ("*") : (de::toString(m_color.getGreen()))) << ", "
83 << ((m_threshold[2] >= 255) ? ("*") : (de::toString(m_color.getBlue()))) << ")"
87 const tcu::RGBA m_color; member in class:deqp::gles31::Functional::__anon24924::ColorVerifier
    [all...]
  /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...]
  /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
  /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;
es2fDitheringTests.cpp 117 const tcu::Vec4 m_color; member in class:deqp::gles2::Functional::DitheringCase
143 , m_color (color)
453 const bool success = drawAndCheckGradient(m_iteration == 1, m_color);
473 const Vec4 quadColor = (float)m_iteration / (float)(numQuads-1) * 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;
es3fDitheringTests.cpp 117 const tcu::Vec4 m_color; member in class:deqp::gles3::Functional::DitheringCase
143 , m_color (color)
453 const bool success = drawAndCheckGradient(m_iteration == 1, m_color);
473 const Vec4 quadColor = (float)m_iteration / (float)(numQuads-1) * m_color;
  /external/pdfium/core/src/fxge/agg/agg23/
fx_agg_driver.cpp 84 m_color = c;
88 return m_color;
100 m_color,
104 m_color,
115 color_type m_color; member in class:agg::renderer_scanline_aa_offset
380 FX_DWORD m_Color;
547 index = ((FX_BYTE)m_Color == 0xff) ? 1 : 0;
550 if (FXARGB_TODIB(m_pDevice->GetPalette()[i]) == m_Color) {
585 index = ((FX_BYTE)m_Color == 0xff) ? 1 : 0;
588 if (FXARGB_TODIB(m_pDevice->GetPalette()[i]) == m_Color) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PODRedBlackTree.h 262 , m_color(Red)
269 Color color() const { return m_color; }
270 void setColor(Color color) { m_color = color; }
296 Color m_color; member in class:blink::PODRedBlackTree::Node

Completed in 469 milliseconds