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

  /external/webkit/WebCore/svg/
SVGPaint.cpp 23 #include "SVGPaint.h"
27 SVGPaint::SVGPaint()
32 SVGPaint::SVGPaint(const String& uri)
38 SVGPaint::SVGPaint(SVGPaintType paintType)
43 SVGPaint::SVGPaint(SVGPaintType paintType, const String& uri, const String& rgbPaint, const String&)
50 SVGPaint::SVGPaint(const Color& c
    [all...]
SVGPaint.h 31 class SVGPaint : public SVGColor {
46 static PassRefPtr<SVGPaint> create()
48 return adoptRef(new SVGPaint);
50 static PassRefPtr<SVGPaint> create(SVGPaintType type)
52 return adoptRef(new SVGPaint(type));
54 static PassRefPtr<SVGPaint> create(const Color& color)
56 return adoptRef(new SVGPaint(color));
58 static PassRefPtr<SVGPaint> create(SVGPaintType type, const String& uri)
60 return adoptRef(new SVGPaint(type, uri, String(), String()));
62 static PassRefPtr<SVGPaint> create(const String& uri, const Color& color
    [all...]

Completed in 116 milliseconds