Searched defs:SVGRect (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGRect.cpp24 #include "core/svg/SVGRect.h"
35 SVGRect::SVGRect() function in class:WebCore::SVGRect
41 SVGRect::SVGRect(InvalidSVGRectTag) function in class:WebCore::SVGRect
47 SVGRect::SVGRect(const FloatRect& rect) function in class:WebCore::SVGRect
54 PassRefPtr<SVGRect> SVGRect::clone() const
56 return SVGRect
[all...]
H A DSVGRect.h30 class SVGRect : public SVGPropertyBase { class in namespace:WebCore
36 static PassRefPtr<SVGRect> create()
38 return adoptRef(new SVGRect());
41 static PassRefPtr<SVGRect> create(InvalidSVGRectTag)
43 return adoptRef(new SVGRect(InvalidSVGRectTag()));
46 static PassRefPtr<SVGRect> create(const FloatRect& rect)
48 return adoptRef(new SVGRect(rect));
51 PassRefPtr<SVGRect> clone() const;
66 bool operator==(const SVGRect&) const;
67 bool operator!=(const SVGRect
[all...]

Completed in 507 milliseconds