Searched defs:pathSegType (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathByteStreamSource.cpp38 bool SVGPathByteStreamSource::parseSVGSegmentType(SVGPathSegType& pathSegType) argument
40 pathSegType = static_cast<SVGPathSegType>(readSVGSegmentType());
H A DSVGPathSegListSource.cpp44 bool SVGPathSegListSource::parseSVGSegmentType(SVGPathSegType& pathSegType) argument
47 pathSegType = static_cast<SVGPathSegType>(m_segment->pathSegType());
55 SVGPathSegType pathSegType = static_cast<SVGPathSegType>(m_segment->pathSegType()); local
57 return pathSegType;
63 ASSERT(m_segment->pathSegType() == PathSegMoveToAbs || m_segment->pathSegType() == PathSegMoveToRel);
72 ASSERT(m_segment->pathSegType() == PathSegLineToAbs || m_segment->pathSegType()
[all...]
H A DSVGPathStringSource.cpp60 static bool parseSVGSegmentTypeHelper(const CharacterType*& current, SVGPathSegType& pathSegType) argument
65 pathSegType = PathSegClosePath;
68 pathSegType = PathSegMoveToAbs;
71 pathSegType = PathSegMoveToRel;
74 pathSegType = PathSegLineToAbs;
77 pathSegType = PathSegLineToRel;
80 pathSegType = PathSegCurveToCubicAbs;
83 pathSegType = PathSegCurveToCubicRel;
86 pathSegType = PathSegCurveToQuadraticAbs;
89 pathSegType
127 parseSVGSegmentType(SVGPathSegType& pathSegType) argument
[all...]

Completed in 345 milliseconds