OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nextCommand
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathByteStreamSource.cpp
44
SVGPathSegType SVGPathByteStreamSource::
nextCommand
(SVGPathSegType)
SVGPathStringSource.cpp
135
static bool nextCommandHelper(const CharacterType*& current, SVGPathSegType previousCommand, SVGPathSegType&
nextCommand
)
141
nextCommand
= PathSegLineToAbs;
145
nextCommand
= PathSegLineToRel;
148
nextCommand
= previousCommand;
155
SVGPathSegType SVGPathStringSource::
nextCommand
(SVGPathSegType previousCommand)
157
SVGPathSegType
nextCommand
;
159
if (nextCommandHelper(m_current.m_character8, previousCommand,
nextCommand
))
160
return
nextCommand
;
162
if (nextCommandHelper(m_current.m_character16, previousCommand,
nextCommand
))
163
return
nextCommand
;
[
all
...]
SVGPathSegListSource.cpp
52
SVGPathSegType SVGPathSegListSource::
nextCommand
(SVGPathSegType)
Completed in 41 milliseconds