Searched refs:arcTo (Results 1 - 25 of 28) sorted by relevance

12

/external/webkit/Source/WebCore/svg/
H A DSVGPathSegListSource.cpp142 SVGPathSegArc* arcTo = static_cast<SVGPathSegArc*>(m_segment.get()); local
143 rx = arcTo->r1();
144 ry = arcTo->r2();
145 angle = arcTo->angle();
146 largeArc = arcTo->largeArcFlag();
147 sweep = arcTo->sweepFlag();
148 targetPoint = FloatPoint(arcTo->x(), arcTo->y());
H A DSVGPathBuilder.h57 virtual void arcTo(float, float, float, bool, bool, const FloatPoint&, PathCoordinateMode) { ASSERT_NOT_REACHED(); } function in class:WebCore::SVGPathBuilder
H A DSVGPathConsumer.h64 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&, PathCoordinateMode) = 0;
H A DSVGPathStringBuilder.h51 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&, PathCoordinateMode);
H A DSVGPathTraversalStateBuilder.h56 virtual void arcTo(float, float, float, bool, bool, const FloatPoint&, PathCoordinateMode) { ASSERT_NOT_REACHED(); } function in class:WebCore::SVGPathTraversalStateBuilder
H A DSVGPathByteStreamBuilder.h55 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&, PathCoordinateMode);
H A DSVGPathSegListBuilder.h65 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&, PathCoordinateMode);
H A DSVGPathByteStreamBuilder.cpp97 void SVGPathByteStreamBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode) function in class:WebCore::SVGPathByteStreamBuilder
H A DSVGPathStringBuilder.cpp102 void SVGPathStringBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode) function in class:WebCore::SVGPathStringBuilder
H A DSVGPathSegListBuilder.cpp132 void SVGPathSegListBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode) function in class:WebCore::SVGPathSegListBuilder
H A DSVGPathBlender.cpp238 m_consumer->arcTo(blendAnimatedFloat(fromRx, toRx, m_progress),
H A DSVGPathParser.cpp272 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPathSkia.cpp122 m_path->arcTo(p1, p2, WebCoreFloatToSkScalar(radius));
145 m_path->arcTo(oval, startDegrees, 0, false);
150 m_path->arcTo(oval, startDegrees + sweepDegrees, 0, true);
162 m_path->arcTo(oval, startDegrees, sweepDegrees, false);
H A DGraphicsContextSkia.cpp216 path->arcTo(r, SkIntToScalar(startAngle), SkIntToScalar(90), false);
/external/skia/include/core/
H A DSkPath.h428 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
434 void arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
440 void arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) { function in class:SkPath
441 this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius);
/external/skia/samplecode/
H A DSampleDither.cpp65 path.arcTo(bounds, 0, sweep, false);
67 path.arcTo(innerBounds, sweep, -sweep, false);
H A DSampleShaderText.cpp177 path.arcTo(SkRect::MakeXYWH(SkIntToScalar(-40), SkIntToScalar(15),
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.h109 const ArcTo& arcTo() const { return m_data.m_arcToData; } function in class:WebCore::PlatformPathElement
/external/webkit/Source/WebCore/platform/graphics/android/
H A DPathAndroid.cpp146 m_path->arcTo(SkFloatToScalar(p1.x()), SkFloatToScalar(p1.y()),
189 // arcTo, since it treats the sweep mod 2PI. We don't have a prepend call,
207 m_path->arcTo(oval, startDegrees, sweepDegrees, false);
/external/skia/gm/
H A Dshadertext.cpp176 path.arcTo(SkRect::MakeXYWH(SkIntToScalar(-40), SkIntToScalar(15),
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.h145 void arcTo(float x0, float y0, float x1, float y1, float radius, ExceptionCode&);
H A DCanvasRenderingContext2D.idl71 void arcTo(in float x1, in float y1, in float x2, in float y2, in float radius)
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp318 m_path.arcTo(xs, ys, width, height, sa, span);
/external/skia/src/core/
H A DSkPath.cpp706 path->arcTo(r, start, sweep, forceMoveTo);
849 void SkPath::arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, function in class:SkPath
896 void SkPath::arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, function in class:SkPath
/external/chromium/chrome/browser/download/
H A Ddownload_util.cc434 path.arcTo(oval,

Completed in 773 milliseconds

12