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

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPaint.cpp23 #include "core/svg/SVGPaint.h"
29 static inline SVGColor::SVGColorType colorTypeForPaintType(const SVGPaint::SVGPaintType& paintType)
32 case SVGPaint::SVG_PAINTTYPE_NONE:
33 case SVGPaint::SVG_PAINTTYPE_UNKNOWN:
34 case SVGPaint::SVG_PAINTTYPE_URI:
35 case SVGPaint::SVG_PAINTTYPE_URI_NONE:
37 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR:
38 case SVGPaint::SVG_PAINTTYPE_RGBCOLOR:
40 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR:
41 case SVGPaint
52 SVGPaint::SVGPaint(const SVGPaintType& paintType, const String& uri) function in class:WebCore::SVGPaint
98 SVGPaint::SVGPaint(const SVGPaint& cloneFrom) function in class:WebCore::SVGPaint
[all...]
H A DSVGPaint.h33 class SVGPaint : public SVGColor { class in namespace:WebCore
48 static PassRefPtr<SVGPaint> createUnknown()
50 return adoptRef(new SVGPaint(SVG_PAINTTYPE_UNKNOWN));
53 static PassRefPtr<SVGPaint> createNone()
55 return adoptRef(new SVGPaint(SVG_PAINTTYPE_NONE));
58 static PassRefPtr<SVGPaint> createCurrentColor()
60 return adoptRef(new SVGPaint(SVG_PAINTTYPE_CURRENTCOLOR));
63 static PassRefPtr<SVGPaint> createColor(const Color& color)
65 RefPtr<SVGPaint> paint = adoptRef(new SVGPaint(SVG_PAINTTYPE_RGBCOLO
[all...]

Completed in 114 milliseconds