Home
last modified time | relevance | path

Searched refs:PlatformPathElement (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/platform/graphics/wince/
DPlatformPathWince.cpp213 static void addArcPoints(PathPolygon& poly, const PlatformPathElement::ArcTo& data) in addArcPoints()
280 int PlatformPathElement::numControlPoints() const in numControlPoints()
297 int PlatformPathElement::numPoints() const in numPoints()
399 void PlatformPathElement::move(const FloatSize& offset) in move()
406 void PlatformPathElement::transform(const AffineTransform& t) in transform()
415 void PlatformPathElement::inflateRectToContainMe(FloatRect& r, const FloatPoint& lastPoint) const in inflateRectToContainMe()
456 PathElementType PlatformPathElement::type() const in type()
493 void PlatformPath::addToSubpath(const PlatformPathElement& e) in addToSubpath()
495 if (e.platformType() == PlatformPathElement::PathMoveTo) { in addToSubpath()
498 } else if (e.platformType() == PlatformPathElement::PathCloseSubpath) { in addToSubpath()
[all …]
DPlatformPathWince.h58 class PlatformPathElement {
95 PlatformPathElement(): m_type(PathCloseSubpath) { m_data.m_points[0].set(0, 0); } in PlatformPathElement() function
96 PlatformPathElement(const MoveTo& data): m_type(PathMoveTo) { m_data.m_moveToData = data; } in PlatformPathElement() function
97 PlatformPathElement(const LineTo& data): m_type(PathLineTo) { m_data.m_lineToData = data; } in PlatformPathElement() function
98 PlatformPathElement(const ArcTo& data): m_type(PathArcTo) { m_data.m_arcToData = data; } in PlatformPathElement() function
99PlatformPathElement(const QuadCurveTo& data): m_type(PathQuadCurveTo) { m_data.m_quadCurveToData =… in PlatformPathElement() function
100PlatformPathElement(const BezierCurveTo& data): m_type(PathBezierCurveTo) { m_data.m_bezierCurveTo… in PlatformPathElement() function
133 typedef Vector<PlatformPathElement> PlatformPathElements;
139 void append(const PlatformPathElement& e);
167 void addToSubpath(const PlatformPathElement& e);
/external/webkit/WebCore/
DChangeLog2220 (WebCore::PlatformPathElement::transform):