HomeSort by relevance Sort by last modified time
    Searched refs:paintType (Results 1 - 6 of 6) sorted by null

  /external/webkit/WebCore/svg/
SVGPaint.cpp 38 SVGPaint::SVGPaint(SVGPaintType paintType)
39 : m_paintType(paintType)
43 SVGPaint::SVGPaint(SVGPaintType paintType, const String& uri, const String& rgbPaint, const String&)
45 , m_paintType(paintType)
89 void SVGPaint::setPaint(SVGPaintType paintType, const String& uri, const String& rgbPaint, const String&, ExceptionCode&)
91 m_paintType = paintType;
SVGPaint.idl 41 readonly attribute SVGPaintType paintType;
45 void setPaint(in SVGPaintType paintType,
SVGPaint.h 70 SVGPaintType paintType() const { return m_paintType; }
  /external/webkit/WebCore/svg/graphics/
SVGPaintServer.cpp 84 SVGPaint::SVGPaintType paintType = fill->paintType();
85 if (paintType == SVGPaint::SVG_PAINTTYPE_URI ||
86 paintType == SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR) {
95 else if (!fillPaintServer && paintType == SVGPaint::SVG_PAINTTYPE_URI)
98 if (paintType != SVGPaint::SVG_PAINTTYPE_URI && !fillPaintServer) {
101 if (paintType == SVGPaint::SVG_PAINTTYPE_CURRENTCOLOR)
125 SVGPaint::SVGPaintType paintType = stroke->paintType();
126 if (paintType == SVGPaint::SVG_PAINTTYPE_URI |
    [all...]
  /external/webkit/WebCore/rendering/style/
SVGRenderStyleDefs.cpp 57 if (paint->paintType() != other.paint->paintType())
60 if (paint->paintType() == SVGPaint::SVG_PAINTTYPE_URI)
63 if (paint->paintType() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR)
SVGRenderStyle.h 109 bool hasStroke() const { return (strokePaint()->paintType() != SVGPaint::SVG_PAINTTYPE_NONE); }
110 bool hasFill() const { return (fillPaint()->paintType() != SVGPaint::SVG_PAINTTYPE_NONE); }

Completed in 245 milliseconds