Searched refs:PlatformPathElement (Results 1 – 3 of 3) sorted by relevance
213 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 …]
58 class PlatformPathElement {95 PlatformPathElement(): m_type(PathCloseSubpath) { m_data.m_points[0].set(0, 0); } in PlatformPathElement() function96 PlatformPathElement(const MoveTo& data): m_type(PathMoveTo) { m_data.m_moveToData = data; } in PlatformPathElement() function97 PlatformPathElement(const LineTo& data): m_type(PathLineTo) { m_data.m_lineToData = data; } in PlatformPathElement() function98 PlatformPathElement(const ArcTo& data): m_type(PathArcTo) { m_data.m_arcToData = data; } in PlatformPathElement() function99 …PlatformPathElement(const QuadCurveTo& data): m_type(PathQuadCurveTo) { m_data.m_quadCurveToData =… in PlatformPathElement() function100 …PlatformPathElement(const BezierCurveTo& data): m_type(PathBezierCurveTo) { m_data.m_bezierCurveTo… in PlatformPathElement() function133 typedef Vector<PlatformPathElement> PlatformPathElements;139 void append(const PlatformPathElement& e);167 void addToSubpath(const PlatformPathElement& e);
2220 (WebCore::PlatformPathElement::transform):