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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegList.cpp 25 #include "core/svg/SVGPathSegList.h"
40 SVGPathSegList::SVGPathSegList(SVGPathElement* contextElement)
47 SVGPathSegList::SVGPathSegList(SVGPathElement* contextElement, PassOwnPtr<SVGPathByteStream> byteStream)
55 SVGPathSegList::~SVGPathSegList()
59 PassRefPtr<SVGPathSegList> SVGPathSegList::clone()
61 RefPtr<SVGPathSegList> svgPathSegList = adoptRef(new SVGPathSegList(m_contextElement, byteStream()->copy()))
    [all...]
SVGPathSegList.h 45 class SVGPathSegList : public SVGListPropertyHelper<SVGPathSegList, SVGPathSeg> {
50 typedef SVGListPropertyHelper<SVGPathSegList, SVGPathSeg> Base;
52 static PassRefPtr<SVGPathSegList> create(SVGPathElement* contextElement)
54 return adoptRef(new SVGPathSegList(contextElement));
56 static PassRefPtr<SVGPathSegList> create() { ASSERT_NOT_REACHED(); return nullptr; }
58 virtual ~SVGPathSegList();
135 virtual PassRefPtr<SVGPathSegList> clone() OVERRIDE;
146 SVGPathSegList(SVGPathElement*);
147 SVGPathSegList(SVGPathElement*, PassOwnPtr<SVGPathByteStream>)
    [all...]

Completed in 207 milliseconds