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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPaint.cpp 23 #include "core/svg/SVGPaint.h"
30 static inline SVGColor::SVGColorType colorTypeForPaintType(const SVGPaint::SVGPaintType& paintType)
33 case SVGPaint::SVG_PAINTTYPE_NONE:
34 case SVGPaint::SVG_PAINTTYPE_UNKNOWN:
35 case SVGPaint::SVG_PAINTTYPE_URI:
36 case SVGPaint::SVG_PAINTTYPE_URI_NONE:
38 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR:
39 case SVGPaint::SVG_PAINTTYPE_RGBCOLOR:
41 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR:
42 case SVGPaint::SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR
    [all...]
SVGPaint.h 33 class SVGPaint : public SVGColor {
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_RGBCOLOR))
    [all...]

Completed in 34 milliseconds