Searched refs:m_pathElement (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegListBuilder.cpp53 : m_pathElement(0)
60 ASSERT(m_pathElement);
63 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
65 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoRel::create(m_pathElement, targetPoint.x(), targetPoint.y()));
70 ASSERT(m_pathElement);
73 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
75 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoRel::create(m_pathElement, targetPoint.x(), targetPoint.y()));
80 ASSERT(m_pathElement);
83 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalAbs::create(m_pathElement, x));
85 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalRel::create(m_pathElement,
[all...]
H A DSVGPathSegListBuilder.h39 void setCurrentSVGPathElement(SVGPathElement* pathElement) { m_pathElement = pathElement; }
47 m_pathElement = 0;
65 SVGPathElement* m_pathElement; member in class:blink::FINAL

Completed in 96 milliseconds