OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PathCoordinateMode
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathConsumer.h
33
enum
PathCoordinateMode
{
52
virtual void moveTo(const FloatPoint&, bool closed,
PathCoordinateMode
) = 0;
53
virtual void lineTo(const FloatPoint&,
PathCoordinateMode
) = 0;
54
virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) = 0;
58
virtual void lineToHorizontal(float,
PathCoordinateMode
) = 0;
59
virtual void lineToVertical(float,
PathCoordinateMode
) = 0;
60
virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) = 0;
61
virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) = 0;
62
virtual void curveToQuadraticSmooth(const FloatPoint&,
PathCoordinateMode
) = 0;
63
virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&,
PathCoordinateMode
) = 0
[
all
...]
SVGPathBuilder.h
46
virtual void moveTo(const FloatPoint&, bool closed,
PathCoordinateMode
) OVERRIDE;
47
virtual void lineTo(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
48
virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
52
virtual void lineToHorizontal(float,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
53
virtual void lineToVertical(float,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
54
virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
55
virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
56
virtual void curveToQuadraticSmooth(const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
57
virtual void arcTo(float, float, float, bool, bool, const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
SVGPathByteStreamBuilder.h
43
virtual void moveTo(const FloatPoint&, bool closed,
PathCoordinateMode
) OVERRIDE;
44
virtual void lineTo(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
45
virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
49
virtual void lineToHorizontal(float,
PathCoordinateMode
) OVERRIDE;
50
virtual void lineToVertical(float,
PathCoordinateMode
) OVERRIDE;
51
virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
52
virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
53
virtual void curveToQuadraticSmooth(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
54
virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
SVGPathSegListBuilder.h
52
virtual void moveTo(const FloatPoint&, bool closed,
PathCoordinateMode
) OVERRIDE;
53
virtual void lineTo(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
54
virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
58
virtual void lineToHorizontal(float,
PathCoordinateMode
) OVERRIDE;
59
virtual void lineToVertical(float,
PathCoordinateMode
) OVERRIDE;
60
virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
61
virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
62
virtual void curveToQuadraticSmooth(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
63
virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
SVGPathStringBuilder.h
39
virtual void moveTo(const FloatPoint&, bool closed,
PathCoordinateMode
) OVERRIDE;
40
virtual void lineTo(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
41
virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
45
virtual void lineToHorizontal(float,
PathCoordinateMode
) OVERRIDE;
46
virtual void lineToVertical(float,
PathCoordinateMode
) OVERRIDE;
47
virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
48
virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
49
virtual void curveToQuadraticSmooth(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
50
virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
SVGPathTraversalStateBuilder.h
47
virtual void moveTo(const FloatPoint&, bool closed,
PathCoordinateMode
) OVERRIDE;
48
virtual void lineTo(const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
49
virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE;
54
virtual void lineToHorizontal(float,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
55
virtual void lineToVertical(float,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
56
virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
57
virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
58
virtual void curveToQuadraticSmooth(const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
59
virtual void arcTo(float, float, float, bool, bool, const FloatPoint&,
PathCoordinateMode
) OVERRIDE { ASSERT_NOT_REACHED(); }
SVGPathBuilder.cpp
36
void SVGPathBuilder::moveTo(const FloatPoint& targetPoint, bool closed,
PathCoordinateMode
mode)
45
void SVGPathBuilder::lineTo(const FloatPoint& targetPoint,
PathCoordinateMode
mode)
52
void SVGPathBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
SVGPathBlender.h
64
PathCoordinateMode
m_fromMode;
65
PathCoordinateMode
m_toMode;
SVGPathByteStreamBuilder.cpp
77
void SVGPathByteStreamBuilder::moveTo(const FloatPoint& targetPoint, bool,
PathCoordinateMode
mode)
84
void SVGPathByteStreamBuilder::lineTo(const FloatPoint& targetPoint,
PathCoordinateMode
mode)
91
void SVGPathByteStreamBuilder::lineToHorizontal(float x,
PathCoordinateMode
mode)
98
void SVGPathByteStreamBuilder::lineToVertical(float y,
PathCoordinateMode
mode)
105
void SVGPathByteStreamBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
114
void SVGPathByteStreamBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
122
void SVGPathByteStreamBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
130
void SVGPathByteStreamBuilder::curveToQuadraticSmooth(const FloatPoint& targetPoint,
PathCoordinateMode
mode)
137
void SVGPathByteStreamBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
SVGPathStringBuilder.cpp
78
void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, bool,
PathCoordinateMode
mode)
83
void SVGPathStringBuilder::lineTo(const FloatPoint& targetPoint,
PathCoordinateMode
mode)
88
void SVGPathStringBuilder::lineToHorizontal(float x,
PathCoordinateMode
mode)
93
void SVGPathStringBuilder::lineToVertical(float y,
PathCoordinateMode
mode)
98
void SVGPathStringBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
107
void SVGPathStringBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
112
void SVGPathStringBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
117
void SVGPathStringBuilder::curveToQuadraticSmooth(const FloatPoint& targetPoint,
PathCoordinateMode
mode)
122
void SVGPathStringBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
SVGPathTraversalStateBuilder.cpp
35
void SVGPathTraversalStateBuilder::moveTo(const FloatPoint& targetPoint, bool,
PathCoordinateMode
)
41
void SVGPathTraversalStateBuilder::lineTo(const FloatPoint& targetPoint,
PathCoordinateMode
)
47
void SVGPathTraversalStateBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
)
SVGPathParser.h
61
PathCoordinateMode
m_mode;
SVGPathSegListBuilder.cpp
58
void SVGPathSegListBuilder::moveTo(const FloatPoint& targetPoint, bool,
PathCoordinateMode
mode)
68
void SVGPathSegListBuilder::lineTo(const FloatPoint& targetPoint,
PathCoordinateMode
mode)
78
void SVGPathSegListBuilder::lineToHorizontal(float x,
PathCoordinateMode
mode)
88
void SVGPathSegListBuilder::lineToVertical(float y,
PathCoordinateMode
mode)
98
void SVGPathSegListBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
108
void SVGPathSegListBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
118
void SVGPathSegListBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
128
void SVGPathSegListBuilder::curveToQuadraticSmooth(const FloatPoint& targetPoint,
PathCoordinateMode
mode)
138
void SVGPathSegListBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint,
PathCoordinateMode
mode)
SVGPathBlender.cpp
273
static inline
PathCoordinateMode
coordinateModeOfCommand(const SVGPathSegType& type)
285
static inline bool isSegmentEqual(const SVGPathSegType& fromType, const SVGPathSegType& toType, const
PathCoordinateMode
& fromMode, const
PathCoordinateMode
& toMode)
Completed in 1013 milliseconds