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

  /external/webkit/Source/WebCore/svg/
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.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...]

Completed in 50 milliseconds