OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGPathSegType
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/WebCore/svg/
SVGPathSource.h
36
virtual bool parseSVGSegmentType(
SVGPathSegType
&) = 0;
37
virtual
SVGPathSegType
nextCommand(
SVGPathSegType
previousCommand) = 0;
SVGPathStringSource.h
43
virtual bool parseSVGSegmentType(
SVGPathSegType
&);
44
virtual
SVGPathSegType
nextCommand(
SVGPathSegType
previousCommand);
SVGPathByteStreamSource.cpp
40
bool SVGPathByteStreamSource::parseSVGSegmentType(
SVGPathSegType
& pathSegType)
42
pathSegType = static_cast<
SVGPathSegType
>(readSVGSegmentType());
46
SVGPathSegType
SVGPathByteStreamSource::nextCommand(
SVGPathSegType
)
48
return static_cast<
SVGPathSegType
>(readSVGSegmentType());
SVGPathSegListSource.h
45
virtual bool parseSVGSegmentType(
SVGPathSegType
&);
46
virtual
SVGPathSegType
nextCommand(
SVGPathSegType
);
SVGPathByteStreamSource.h
43
virtual bool parseSVGSegmentType(
SVGPathSegType
&);
44
virtual
SVGPathSegType
nextCommand(
SVGPathSegType
);
SVGPathSegListSource.cpp
46
bool SVGPathSegListSource::parseSVGSegmentType(
SVGPathSegType
& pathSegType)
49
pathSegType = static_cast<
SVGPathSegType
>(m_segment->pathSegType());
54
SVGPathSegType
SVGPathSegListSource::nextCommand(
SVGPathSegType
)
57
SVGPathSegType
pathSegType = static_cast<
SVGPathSegType
>(m_segment->pathSegType());
SVGPathParser.h
63
SVGPathSegType
m_lastCommand;
SVGPathStringSource.cpp
47
bool SVGPathStringSource::parseSVGSegmentType(
SVGPathSegType
& pathSegType)
114
SVGPathSegType
SVGPathStringSource::nextCommand(
SVGPathSegType
previousCommand)
125
SVGPathSegType
nextCommand;
SVGPathSeg.h
29
enum
SVGPathSegType
{
SVGPathBlender.cpp
250
static inline PathCoordinateMode coordinateModeOfCommand(const
SVGPathSegType
& type)
262
static inline bool isSegmentEqual(const
SVGPathSegType
& fromType, const
SVGPathSegType
& toType, const PathCoordinateMode& fromMode, const PathCoordinateMode& toMode)
288
SVGPathSegType
fromCommand;
289
SVGPathSegType
toCommand;
SVGPathParser.cpp
292
SVGPathSegType
command;
Completed in 234 milliseconds