OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pathElement
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegListBuilder.cpp
53
:
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
, x))
[
all
...]
SVGPathSegListBuilder.h
39
void setCurrentSVGPathElement(SVGPathElement* pathElement) {
m_pathElement
= pathElement; }
47
m_pathElement
= 0;
65
SVGPathElement*
m_pathElement
;
Completed in 301 milliseconds