nextCommand        38 Source/core/svg/SVGPathByteStreamSource.h     virtual SVGPathSegType nextCommand(SVGPathSegType) OVERRIDE;
nextCommand       381 Source/core/svg/SVGPathParser.cpp         command = m_source->nextCommand(command);
nextCommand        42 Source/core/svg/SVGPathSegListSource.h     virtual SVGPathSegType nextCommand(SVGPathSegType) OVERRIDE;
nextCommand        38 Source/core/svg/SVGPathSource.h     virtual SVGPathSegType nextCommand(SVGPathSegType previousCommand) = 0;
nextCommand       135 Source/core/svg/SVGPathStringSource.cpp static bool nextCommandHelper(const CharacterType*& current, SVGPathSegType previousCommand, SVGPathSegType& nextCommand)
nextCommand       141 Source/core/svg/SVGPathStringSource.cpp             nextCommand = PathSegLineToAbs;
nextCommand       145 Source/core/svg/SVGPathStringSource.cpp             nextCommand = PathSegLineToRel;
nextCommand       148 Source/core/svg/SVGPathStringSource.cpp         nextCommand = previousCommand;
nextCommand       157 Source/core/svg/SVGPathStringSource.cpp     SVGPathSegType nextCommand;
nextCommand       159 Source/core/svg/SVGPathStringSource.cpp         if (nextCommandHelper(m_current.m_character8, previousCommand, nextCommand))
nextCommand       160 Source/core/svg/SVGPathStringSource.cpp             return nextCommand;
nextCommand       162 Source/core/svg/SVGPathStringSource.cpp         if (nextCommandHelper(m_current.m_character16, previousCommand, nextCommand))
nextCommand       163 Source/core/svg/SVGPathStringSource.cpp             return nextCommand;
nextCommand       166 Source/core/svg/SVGPathStringSource.cpp     parseSVGSegmentType(nextCommand);
nextCommand       167 Source/core/svg/SVGPathStringSource.cpp     return nextCommand;
nextCommand        43 Source/core/svg/SVGPathStringSource.h     virtual SVGPathSegType nextCommand(SVGPathSegType previousCommand) OVERRIDE;