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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPoint.h 42 class SVGPoint : public SVGPropertyHelper<SVGPoint> {
46 static PassRefPtr<SVGPoint> create()
48 return adoptRef(new SVGPoint());
51 static PassRefPtr<SVGPoint> create(const FloatPoint& point)
53 return adoptRef(new SVGPoint(point));
56 PassRefPtr<SVGPoint> clone() const;
78 SVGPoint();
79 explicit SVGPoint(const FloatPoint&);
87 inline PassRefPtr<SVGPoint> toSVGPoint(PassRefPtr<SVGPropertyBase> passBase
    [all...]
SVGPoint.cpp 33 #include "core/svg/SVGPoint.h"
45 SVGPoint::SVGPoint()
49 SVGPoint::SVGPoint(const FloatPoint& point)
54 PassRefPtr<SVGPoint> SVGPoint::clone() const
56 return SVGPoint::create(m_value);
60 void SVGPoint::parse(const CharType*& ptr, const CharType* end, ExceptionState& exceptionState)
84 FloatPoint SVGPoint::matrixTransform(const AffineTransform& transform) cons
    [all...]

Completed in 1045 milliseconds