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

1 2

  /external/webkit/Source/WebCore/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;
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
OutlineValue.h 43 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_offset == o.m_offset && m_isAuto == o.m_isAuto;
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
ShadowData.cpp 37 , m_color(o.m_color)
55 && m_color == o.m_color
  /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
RenderSVGResourceSolidColor.cpp 58 context->setFillColor(m_color, colorSpace);
65 context->setStrokeColor(m_color, colorSpace);
  /external/webkit/Source/WebCore/platform/graphics/
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); }
170 RGBA32 m_color; member in class:WebCore::Color
    [all...]
Color.cpp 166 m_valid = parseHexColor(name.characters() + 1, name.length() - 1, m_color);
174 m_valid = parseHexColor(&name[1], m_color);
177 m_color = foundColor ? foundColor->ARGBValue : 0;
245 m_color = foundColor ? foundColor->ARGBValue : 0;
252 if (m_color == black)
277 if (m_color == white)
ContextShadow.h 81 Color m_color; member in class:WebCore::ContextShadow
ShadowBlur.h 88 Color m_color; member in class:WebCore::ShadowBlur
ContextShadow.cpp 53 : m_color(color)
64 if (!m_color.isValid() || !color.alpha()) {
81 m_color = Color();
ShadowBlur.cpp 168 : m_color(color)
179 if (!m_color.isValid() || !color.alpha()) {
413 graphicsContext->setFillColor(m_color, m_colorSpace);
623 if (!ScratchBuffer::shared().matchesLastInsetShadow(m_blurRadius, m_color, m_colorSpace, templateBounds, templateHole, radii)) {
643 ScratchBuffer::shared().setLastInsetShadowValues(m_blurRadius, m_color, m_colorSpace, templateBounds, templateHole, radii);
661 graphicsContext->setFillColor(m_color, m_colorSpace);
687 if (!ScratchBuffer::shared().matchesLastShadow(m_blurRadius, m_color, m_colorSpace, templateShadow, radii)) {
705 ScratchBuffer::shared().setLastShadowValues(m_blurRadius, m_color, m_colorSpace, templateShadow, radii);
738 graphicsContext->setFillColor(m_color, m_colorSpace);
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGColor.cpp 40 return RGBColor::create(m_color.rgb());
51 m_color = color;
122 m_color = Color();
140 return m_color.serialized();
142 if (m_color.isValid())
143 return m_color.serialized();
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/gtk/
ColorGtk.cpp 29 : m_color(makeRGB(c.red >> 8, c.green >> 8, c.blue >> 8))
36 : m_color(makeRGBA(static_cast<int>(c.red * 255),
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ColorHaiku.cpp 36 : m_color(makeRGBA(color.red, color.green, color.blue, color.alpha))
  /external/webkit/Source/WebCore/platform/graphics/qt/
ColorQt.cpp 36 : m_color(makeRGBA(c.red(), c.green(), c.blue(), c.alpha()))
StillImageQt.cpp 81 shadowPainter->setOpacity(static_cast<qreal>(shadow->m_color.alpha()) / 255);
  /external/webkit/Source/WebCore/platform/graphics/wx/
ColorWx.cpp 36 m_color = makeRGBA((int)color.Red(), (int)color.Green(), (int)color.Blue(), (int)color.Alpha());
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
BaseLayerAndroid.h 49 void setBackgroundColor(Color& color) { m_color = color; }
50 Color getBackgroundColor() { return m_color; }
54 Color m_color; member in class:WebCore::BaseLayerAndroid
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.h 381 , m_color(color)
384 context->drawFocusRing(m_rects, m_width, m_offset, m_color);
392 Color m_color; member in class:WebCore::GraphicsOperation::DrawFocusRing
468 void setColor(Color c) { m_color = c; m_hasColor = true; }
471 context->fillRect(m_rect, m_color);
476 virtual bool isOpaque() { return (m_hasColor && !m_color.hasAlpha())
481 Color m_color; member in class:WebCore::GraphicsOperation::FillRect
498 , m_color(color)
503 m_color);
513 Color m_color; member in class:WebCore::GraphicsOperation::FillRoundedRect
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
ColorCG.cpp 41 m_color = 0;
69 m_color = makeRGBA(r * 255, g * 255, b * 255, a * 255);
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 122 Color color = renderer->document()->styleSelector()->getColorFromPrimitiveValue(stop.m_color.get());
155 stops[i].color = renderer->document()->styleSelector()->getColorFromPrimitiveValue(stop.m_color.get());
439 result += "from(" + stop.m_color->cssText() + ")";
441 result += "to(" + stop.m_color->cssText() + ")";
443 result += "color-stop(" + String::number(stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER)) + ", " + stop.m_color->cssText() + ")";
464 result += stop.m_color->cssText();
581 result += "from(" + stop.m_color->cssText() + ")";
583 result += "to(" + stop.m_color->cssText() + ")";
585 result += "color-stop(" + String::number(stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER)) + ", " + stop.m_color->cssText() + ")";
620 result += stop.m_color->cssText()
    [all...]

Completed in 976 milliseconds

1 2