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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransform.cpp 22 #include "core/svg/SVGTransform.h"
31 SVGTransform::SVGTransform()
38 SVGTransform::SVGTransform(SVGTransformType transformType, ConstructionMode mode)
47 SVGTransform::SVGTransform(const AffineTransform& matrix)
55 SVGTransform::SVGTransform(SVGTransformType transformType, float angle, const FloatPoint& center, const AffineTransform& matrix)
64 SVGTransform::~SVGTransform(
    [all...]
SVGTransform.h 44 class SVGTransform : public SVGPropertyBase {
53 static PassRefPtr<SVGTransform> create()
55 return adoptRef(new SVGTransform());
58 static PassRefPtr<SVGTransform> create(SVGTransformType type, ConstructionMode mode = ConstructIdentityTransform)
60 return adoptRef(new SVGTransform(type, mode));
63 static PassRefPtr<SVGTransform> create(const AffineTransform& affineTransform)
65 return adoptRef(new SVGTransform(affineTransform));
68 virtual ~SVGTransform();
70 PassRefPtr<SVGTransform> clone() const;
104 SVGTransform();
    [all...]

Completed in 98 milliseconds