Searched refs:previousCommand (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSource.h38 virtual SVGPathSegType nextCommand(SVGPathSegType previousCommand) = 0;
H A DSVGPathStringSource.cpp135 static bool nextCommandHelper(const CharacterType*& current, SVGPathSegType previousCommand, SVGPathSegType& nextCommand) argument
139 && previousCommand != PathSegClosePath) {
140 if (previousCommand == PathSegMoveToAbs) {
144 if (previousCommand == PathSegMoveToRel) {
148 nextCommand = previousCommand;
155 SVGPathSegType SVGPathStringSource::nextCommand(SVGPathSegType previousCommand) argument
159 if (nextCommandHelper(m_current.m_character8, previousCommand, nextCommand))
162 if (nextCommandHelper(m_current.m_character16, previousCommand, nextCommand))
H A DSVGPathStringSource.h43 virtual SVGPathSegType nextCommand(SVGPathSegType previousCommand);

Completed in 63 milliseconds