Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/graphics/wince/
DPlatformPathWince.h95 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