/external/skqp/samplecode/ |
D | SampleClock.cpp | 172 path.arcTo(rect, 0, 0, false); in onDrawContent() 174 path.arcTo(rect, 360, 0, true); in onDrawContent() 182 path.arcTo(rect, 0, 0, false); in onDrawContent() 184 path.arcTo(rect, 360, 0, true); in onDrawContent() 192 path.arcTo(rect, 0, 0, false); in onDrawContent() 194 path.arcTo(rect, 360, 0, true); in onDrawContent() 208 path.arcTo(rect, 0, 0, false); in onDrawContent() 210 path.arcTo(rect, 360, 0, true); in onDrawContent()
|
D | SampleAndroidShadows.cpp | 92 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), -90, -90, false); in onOnceBeforeDraw() 97 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, -90, false); in onOnceBeforeDraw() 102 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, 90, false); in onOnceBeforeDraw() 103 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 90, 90, false); in onOnceBeforeDraw()
|
/external/skia/samplecode/ |
D | SampleClock.cpp | 172 path.arcTo(rect, 0, 0, false); in onDrawContent() 174 path.arcTo(rect, 360, 0, true); in onDrawContent() 182 path.arcTo(rect, 0, 0, false); in onDrawContent() 184 path.arcTo(rect, 360, 0, true); in onDrawContent() 192 path.arcTo(rect, 0, 0, false); in onDrawContent() 194 path.arcTo(rect, 360, 0, true); in onDrawContent() 208 path.arcTo(rect, 0, 0, false); in onDrawContent() 210 path.arcTo(rect, 360, 0, true); in onDrawContent()
|
D | SampleAndroidShadows.cpp | 92 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), -90, -90, false); in onOnceBeforeDraw() 97 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, -90, false); in onOnceBeforeDraw() 102 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, 90, false); in onOnceBeforeDraw() 103 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 90, 90, false); in onOnceBeforeDraw()
|
/external/skqp/experimental/canvaskit/htmlcanvas/ |
D | path2d.js | 9 function arcTo(skpath, x1, y1, x2, y2, radius) { function 19 skpath.arcTo(x1, y1, x2, y2, radius); 53 skpath.arcTo(oval, startDegrees, halfSweep, false); 54 skpath.arcTo(oval, startDegrees + halfSweep, halfSweep, false); 57 skpath.arcTo(oval, startDegrees, sweepDegrees, false); 173 this.arcTo = function(x1, y1, x2, y2, radius) { method in Path2D 174 arcTo(this._path, x1, y1, x2, y2, radius);
|
/external/skia/modules/canvaskit/htmlcanvas/ |
D | path2d.js | 9 function arcTo(skpath, x1, y1, x2, y2, radius) { function 19 skpath.arcTo(x1, y1, x2, y2, radius); 53 skpath.arcTo(oval, startDegrees, halfSweep, false); 54 skpath.arcTo(oval, startDegrees + halfSweep, halfSweep, false); 57 skpath.arcTo(oval, startDegrees, sweepDegrees, false); 173 this.arcTo = function(x1, y1, x2, y2, radius) { method in Path2D 174 arcTo(this._path, x1, y1, x2, y2, radius);
|
/external/skia/gm/ |
D | arcto.cpp | 61 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kSmall_ArcSize, 67 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kLarge_ArcSize, 97 path.arcTo(0, 0, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 200); 102 path.arcTo(80, 80, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 100); 199 p.arcTo(oval, 1.25f * 180, .5f * 180, false);
|
D | complexclip3.cpp | 42 clipComplex.arcTo(r1, SkIntToScalar(30), SkIntToScalar(300), false); in onDraw()
|
/external/skqp/gm/ |
D | arcto.cpp | 61 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kSmall_ArcSize, 67 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kLarge_ArcSize, 97 path.arcTo(0, 0, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 200); 102 path.arcTo(80, 80, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 100); 199 p.arcTo(oval, 1.25f * 180, .5f * 180, false);
|
D | complexclip3.cpp | 42 clipComplex.arcTo(r1, SkIntToScalar(30), SkIntToScalar(300), false); in onDraw()
|
D | conicpaths.cpp | 146 path.arcTo(0, 0, -39.00216443306411f, 400.6058925796476f, radius);
|
/external/skia/include/core/ |
D | SkPath.h | 823 SkPath& arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo); 846 SkPath& arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius); 867 SkPath& arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) { in arcTo() function 868 return this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius); in arcTo() 904 SkPath& arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc, 930 SkPath& arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, in arcTo() function 932 return this->arcTo(r.fX, r.fY, xAxisRotate, largeArc, sweep, xy.fX, xy.fY); in arcTo()
|
/external/skqp/include/core/ |
D | SkPath.h | 823 SkPath& arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo); 846 SkPath& arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius); 867 SkPath& arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) { in arcTo() function 868 return this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius); in arcTo() 904 SkPath& arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc, 930 SkPath& arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, in arcTo() function 932 return this->arcTo(r.fX, r.fY, xAxisRotate, largeArc, sweep, xy.fX, xy.fY); in arcTo()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/ |
D | PieRenderer.java | 115 clip.arcTo(new RectF(bounds.left - rad, in drawSegment() 125 p.arcTo(bounds, startAngle, sweep); in drawSegment() 129 p.arcTo(new RectF( in drawSegment()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowPath.java | 383 protected void arcTo(RectF oval, float startAngle, float sweepAngle) { in arcTo() method in ShadowPath 384 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, false); in arcTo() 388 protected void arcTo(RectF oval, float startAngle, float sweepAngle, boolean forceMoveTo) { in arcTo() method in ShadowPath 389 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, forceMoveTo); in arcTo() 393 protected void arcTo( in arcTo() method in ShadowPath
|
/external/skia/modules/canvaskit/ |
D | externs.js | 468 CanvasKit.SkPath.prototype.arcTo = function() {}; method in CanvasKit.SkPath 518 CanvasRenderingContext2D.prototype.arcTo = function() {}; method in CanvasRenderingContext2D 563 Path2D.prototype.arcTo = function() {}; method in Path2D
|
/external/skqp/experimental/canvaskit/ |
D | externs.js | 449 CanvasKit.SkPath.prototype.arcTo = function() {}; method in CanvasKit.SkPath 499 CanvasRenderingContext2D.prototype.arcTo = function() {}; method in CanvasRenderingContext2D 544 Path2D.prototype.arcTo = function() {}; method in Path2D
|
/external/skia/docs/ |
D | SkPath_Reference.bmh | 201 #SeeAlso arcTo rArcTo isRect isNestedFillRects addRect addOval 2059 path.arcTo(20, 0, 20, 20, 20); 2152 #SeeAlso rConicTo arcTo addArc quadTo 2175 path.arcTo(oval, -90, 90 - 20 * i, false); 2192 #SeeAlso rConicTo arcTo addArc quadTo 2219 #SeeAlso conicTo arcTo addArc quadTo 2359 arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo) 2365 arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius) 2370 arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, 2377 conicTo can represent any Arc with a sweep less than 180 degrees at any rotation. All arcTo [all …]
|
/external/skqp/docs/ |
D | SkPath_Reference.bmh | 201 #SeeAlso arcTo rArcTo isRect isNestedFillRects addRect addOval 2059 path.arcTo(20, 0, 20, 20, 20); 2152 #SeeAlso rConicTo arcTo addArc quadTo 2175 path.arcTo(oval, -90, 90 - 20 * i, false); 2192 #SeeAlso rConicTo arcTo addArc quadTo 2219 #SeeAlso conicTo arcTo addArc quadTo 2359 arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo) 2365 arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius) 2370 arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, 2377 conicTo can represent any Arc with a sweep less than 180 degrees at any rotation. All arcTo [all …]
|
/external/fonttools/Tests/svgLib/path/ |
D | parser_test.py | 339 def arcTo(self, rx, ry, rotation, arc_large, arc_sweep, end_point): member in ArcRecordingPen
|
/external/skqp/fuzz/ |
D | FuzzCommon.cpp | 101 path->arcTo(a, b, c, d, e); in FuzzNicePath() 107 path->arcTo(r, a, b, test); in FuzzNicePath()
|
/external/skia/fuzz/ |
D | FuzzCommon.cpp | 101 path->arcTo(a, b, c, d, e); in FuzzNicePath() 107 path->arcTo(r, a, b, test); in FuzzNicePath()
|
/external/skqp/modules/pathkit/tests/ |
D | path2d.spec.js | 41 path.arcTo(150, 100, 50, 200, 20);
|
/external/skia/modules/pathkit/tests/ |
D | path2d.spec.js | 41 path.arcTo(150, 100, 50, 200, 20);
|
/external/skia/modules/pathkit/ |
D | externs.js | 91 PathKit.SkPath.prototype.arcTo = function(x1, y1, x2, y2, radius) {}; method in PathKit.SkPath
|