Home
last modified time | relevance | path

Searched refs:rCubicTo (Results 1 – 20 of 20) sorted by relevance

/external/skia/include/core/
DSkPathBuilder.h95 SkPathBuilder& rCubicTo(SkPoint pt1, SkPoint pt2, SkPoint pt3);
96 …SkPathBuilder& rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar x3, SkScalar … in rCubicTo() function
97 return this->rCubicTo({x1, y1}, {x2, y2}, {x3, y3}); in rCubicTo()
DSkPath.h821 SkPath& rCubicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2,
/external/skia/docs/examples/
DPath_rCubicTo.cpp15 path.rCubicTo(40 * sx, 4 * sy, 4 * sx, 40 * sy, 40 * sx, 40 * sy); in draw()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPathParser.java283 path.rCubicTo(val[k + 0], val[k + 1], val[k + 2], val[k + 3], val[k + 4], val[k + 5]); in addCommand()
308 path.rCubicTo( in addCommand()
DShadowLegacyPath.java313 protected void rCubicTo(float x1, float y1, float x2, float y2, float x3, float y3) { in rCubicTo() method in ShadowLegacyPath
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPathParser.java288 path.rCubicTo(val[k + 0], val[k + 1], val[k + 2], val[k + 3], val[k + 4], val[k + 5]); in addCommand()
313 path.rCubicTo( in addCommand()
DShadowPath.java369 protected void rCubicTo(float x1, float y1, float x2, float y2, float x3, float y3) { in rCubicTo() method in ShadowPath
/external/setupdesign/main/src/com/google/android/setupdesign/
DGlifPatternDrawable.java195 p.rCubicTo(92.6f, -170.6f, 213f, -440.3f, 269.4f, -768f); in renderOnCanvas()
/external/skia/fuzz/
DFuzzCommon.cpp98 path->rCubicTo(a, b, c, d, e, f); in FuzzNicePath()
/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/integrationtests/nativegraphics/
DShadowNativePathTest.java387 path.rCubicTo(10.0f, 10.0f, 11.0f, 11.0f, 12.0f, 12.0f); in testRCubicTo()
/external/skia/modules/canvaskit/tests/
Dpath_test.js364 .rCubicTo(70, -70, 140, 70, 170, -70); // 90, 10, 160, 150, 190, 10
/external/skia/modules/canvaskit/
Dexterns.js611 rCubicTo: function() {},
Dinterface.js313 CanvasKit.Path.prototype.rCubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { method in CanvasKit.Path
Dcanvaskit_bindings.cpp377 p.rCubicTo(dx1, dy1, dx2, dy2, dx3, dy3); in ApplyRCubicTo()
DCHANGELOG.md878 - `SkPath.rArcTo`, `SkPath.rConicTo`, `SkPath.rCubicTo`, `SkPath.rLineTo`, `SkPath.rMoveTo`,
/external/skia/src/core/
DSkPathBuilder.cpp185 SkPathBuilder& SkPathBuilder::rCubicTo(SkPoint p1, SkPoint p2, SkPoint p3) { in rCubicTo() function in SkPathBuilder
DSkPath.cpp799 SkPath& SkPath::rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, in rCubicTo() function in SkPath
/external/skia/modules/canvaskit/npm_build/types/
Dcanvaskit-wasm-tests.ts510 path.rCubicTo(20, 30, 40, 50, 2, 1);
Dindex.d.ts2493 rCubicTo(cpx1: number, cpy1: number, cpx2: number, cpy2: number, x: number, y: number): Path; method
/external/skia/tests/
DPathTest.cpp401 path.rCubicTo(50, 50, 85, 85, 95, 95); in test_path_close_issue1474()