HomeSort by relevance Sort by last modified time
    Searched refs:m_pathSegList (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegListBuilder.cpp 54 , m_pathSegList(nullptr)
61 ASSERT(m_pathSegList);
63 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
65 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoRel::create(m_pathElement, targetPoint.x(), targetPoint.y()));
71 ASSERT(m_pathSegList);
73 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
75 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoRel::create(m_pathElement, targetPoint.x(), targetPoint.y()));
81 ASSERT(m_pathSegList);
83 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalAbs::create(m_pathElement, x));
85 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalRel::create(m_pathElement, x))
    [all...]
SVGPathSegListBuilder.h 40 void setCurrentSVGPathSegList(PassRefPtr<SVGPathSegList> pathSegList) { m_pathSegList = pathSegList; }
48 m_pathSegList = nullptr;
66 RefPtr<SVGPathSegList> m_pathSegList;
SVGPathElement.h 86 SVGPathSegListTearOff* pathSegList() { return m_pathSegList->baseVal(); }
87 SVGPathSegListTearOff* animatedPathSegList() { return m_pathSegList->animVal(); }
93 const SVGPathByteStream* pathByteStream() const { return m_pathSegList->currentValue()->byteStream(); }
112 RefPtr<SVGAnimatedPath> m_pathSegList;
SVGPathElement.cpp 55 , m_pathSegList(SVGAnimatedPath::create(this, SVGNames::dAttr))
58 addToPropertyMap(m_pathSegList);
199 m_pathSegList->setBaseValueAsString(value, parseError);
261 m_pathSegList->baseValue()->clearByteStream();

Completed in 344 milliseconds