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

  /external/webkit/Source/WebCore/svg/
SVGPaint.h 32 class SVGPaint : public SVGColor {
47 static PassRefPtr<SVGPaint> createUnknown()
49 return adoptRef(new SVGPaint(SVG_PAINTTYPE_UNKNOWN));
52 static PassRefPtr<SVGPaint> createNone()
54 return adoptRef(new SVGPaint(SVG_PAINTTYPE_NONE));
57 static PassRefPtr<SVGPaint> createCurrentColor()
59 return adoptRef(new SVGPaint(SVG_PAINTTYPE_CURRENTCOLOR));
62 static PassRefPtr<SVGPaint> createColor(const Color& color)
64 RefPtr<SVGPaint> paint = adoptRef(new SVGPaint(SVG_PAINTTYPE_RGBCOLOR))
    [all...]
SVGPaint.cpp 25 #include "SVGPaint.h"
33 static inline SVGColor::SVGColorType colorTypeForPaintType(const SVGPaint::SVGPaintType& paintType)
36 case SVGPaint::SVG_PAINTTYPE_NONE:
37 case SVGPaint::SVG_PAINTTYPE_UNKNOWN:
38 case SVGPaint::SVG_PAINTTYPE_URI:
39 case SVGPaint::SVG_PAINTTYPE_URI_NONE:
41 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR:
42 case SVGPaint::SVG_PAINTTYPE_RGBCOLOR:
44 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR:
45 case SVGPaint::SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR
    [all...]
SVGPaint.idl 28 interface [Conditional=SVG] SVGPaint : SVGColor {
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResource.cpp 54 SVGPaint* paint = mode == ApplyToFillMode ? svgStyle->fillPaint() : svgStyle->strokePaint();
57 SVGPaint::SVGPaintType paintType = paint->paintType();
58 if (paintType == SVGPaint::SVG_PAINTTYPE_NONE)
62 if (paintType == SVGPaint::SVG_PAINTTYPE_RGBCOLOR
63 || paintType == SVGPaint::SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR
64 || paintType == SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR
65 || paintType == SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR)
67 else if (paintType == SVGPaint::SVG_PAINTTYPE_CURRENTCOLOR || paintType == SVGPaint::SVG_PAINTTYPE_URI_CURRENTCOLOR)
74 if (SVGPaint* visitedPaint = mode == ApplyToFillMode ? visitedStyle->svgStyle()->fillPaint() : visitedStyle->sv (…)
    [all...]
SVGResources.cpp 31 #include "SVGPaint.h"
155 static inline RenderSVGResourceContainer* paintingResourceFromSVGPaint(Document* document, SVGPaint* paint, AtomicString& id, bool& hasPendingResource)
159 SVGPaint::SVGPaintType paintType = paint->paintType();
160 if (paintType != SVGPaint::SVG_PAINTTYPE_URI && paintType != SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR)
RenderSVGResourceClipper.cpp 257 svgStyle->setFillPaint(SVGPaint::defaultFill());
258 svgStyle->setStrokePaint(SVGPaint::defaultStroke());
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSValueCustom.cpp 57 return toV8(static_cast<SVGPaint*>(impl));
  /external/webkit/Source/WebCore/bindings/js/
JSCSSValueCustom.cpp 40 #include "SVGPaint.h"
63 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPaint, value);
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 32 #include "SVGPaint.h"
74 static SVGPaint* initialFillPaint() { return SVGPaint::defaultFill(); }
76 static SVGPaint* initialStrokePaint() { return SVGPaint::defaultStroke(); }
153 void setFillPaint(PassRefPtr<SVGPaint> obj)
165 void setStrokePaint(PassRefPtr<SVGPaint> obj)
296 SVGPaint* fillPaint() const { return fill->paint.get(); }
298 SVGPaint* strokePaint() const { return stroke->paint.get(); }
323 bool hasStroke() const { return strokePaint()->paintType() != SVGPaint::SVG_PAINTTYPE_NONE;
    [all...]
SVGRenderStyleDefs.h 94 class SVGPaint;
109 RefPtr<SVGPaint> paint;
134 RefPtr<SVGPaint> paint;
SVGRenderStyleDefs.cpp 62 if (paint->paintType() == SVGPaint::SVG_PAINTTYPE_URI)
65 if (paint->paintType() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR)
  /external/webkit/Source/WebCore/css/
SVGCSSParser.cpp 35 #include "SVGPaint.h"
182 parsedValue = SVGPaint::createNone();
184 parsedValue = SVGPaint::createCurrentColor();
186 parsedValue = SVGPaint::createColor(RenderTheme::defaultTheme()->systemColor(id));
190 parsedValue = SVGPaint::createURIAndColor(value->string, c);
192 parsedValue = SVGPaint::createURI(value->string);
342 return SVGPaint::createUnknown();
343 return SVGPaint::createColor(Color(c));
SVGCSSStyleSelector.cpp 41 #include "SVGPaint.h"
236 svgstyle->setFillPaint(static_cast<SVGPaint*>(value));
243 svgstyle->setStrokePaint(static_cast<SVGPaint*>(value));
  /external/webkit/Source/WebCore/page/
DOMWindow.idl     [all...]
  /external/webkit/Source/WebCore/
Android.mk     [all...]

Completed in 495 milliseconds