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 SVGPropertyBase {
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;
69 bool operator==(const SVGPoint&) const;
70 bool operator!=(const SVGPoint& other) const { return !operator==(other); }
82 SVGPoint();
83 explicit SVGPoint(const FloatPoint&)
    [all...]
SVGPoint.cpp 33 #include "core/svg/SVGPoint.h"
45 SVGPoint::SVGPoint()
50 SVGPoint::SVGPoint(const FloatPoint& point)
56 PassRefPtr<SVGPoint> SVGPoint::clone() const
58 return SVGPoint::create(m_value);
61 PassRefPtr<SVGPropertyBase> SVGPoint::cloneForAnimation(const String& value) const
63 RefPtr<SVGPoint> point = SVGPoint::create()
    [all...]

Completed in 56 milliseconds