Searched defs:SVGPaint (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGPaint.cpp25 #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
56 SVGPaint::SVGPaint(const SVGPaintType& paintType, String uri) function in class:WebCore::SVGPaint
[all...]
H A DSVGPaint.h32 class SVGPaint : public SVGColor { class in namespace:WebCore
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_RGBCOLO
[all...]

Completed in 514 milliseconds