Searched refs:rLineTo (Results 1 - 13 of 13) sorted by relevance
/third_party/skia/bench/ |
H A D | AlternatingColorPatternBench.cpp | 129 fPaths[count].rLineTo(SkIntToScalar(w), 0); 130 fPaths[count].rLineTo(0, SkIntToScalar(h)); 131 fPaths[count].rLineTo(SkIntToScalar(-w + 1), 0);
|
/third_party/skia/include/core/ |
H A D | SkPathBuilder.h | 76 SkPathBuilder& rLineTo(SkPoint pt); 77 SkPathBuilder& rLineTo(SkScalar x, SkScalar y) { return this->rLineTo({x, y}); } in rLineTo() function in SkPathBuilder
|
H A D | SkPath.h | 625 SkPath& rLineTo(SkScalar dx, SkScalar dy);
|
/third_party/skia/docs/examples/ |
H A D | Path_rLineTo.cpp | 16 path.rLineTo(x, y); in REG_FIDDLE()
|
H A D | Path_rMoveTo.cpp | 13 path.rLineTo(arrow[i].fX, arrow[i].fY); in REG_FIDDLE()
|
/third_party/skia/gm/ |
H A D | pictureimagegenerator.cpp | 80 path.rLineTo(accentSize, 0); in draw_vector_logo()
|
/third_party/skia/fuzz/ |
H A D | FuzzCommon.cpp | 73 path->rLineTo(a, b); in FuzzNicePath()
|
/third_party/skia/modules/canvaskit/ |
H A D | externs.js | 583 rLineTo: function() {},
|
H A D | interface.js | 313 CanvasKit.Path.prototype.rLineTo = function(dx, dy) {
|
H A D | canvaskit_bindings.cpp | 279 p.rLineTo(dx, dy); in ApplyRLineTo()
|
/third_party/skia/tests/ |
H A D | PathTest.cpp | 318 // Test rLineTo(). in test_path_close_issue1474() 319 path.rLineTo(0, 100); in test_path_close_issue1474() 320 path.rLineTo(100, 0); in test_path_close_issue1474() 322 path.rLineTo(50, 50); // This should go to 50,50. in test_path_close_issue1474() 330 path.rLineTo(0, 100); in test_path_close_issue1474() 331 path.rLineTo(100, 0); in test_path_close_issue1474() 341 path.rLineTo(0, 100); in test_path_close_issue1474() 342 path.rLineTo(100, 0); in test_path_close_issue1474() 352 path.rLineTo(0, 100); in test_path_close_issue1474() 353 path.rLineTo(10 in test_path_close_issue1474() [all...] |
/third_party/skia/src/core/ |
H A D | SkPathBuilder.cpp | 162 SkPathBuilder& SkPathBuilder::rLineTo(SkPoint p1) { in rLineTo() function in SkPathBuilder
|
H A D | SkPath.cpp | 668 SkPath& SkPath::rLineTo(SkScalar x, SkScalar y) { in rLineTo() function in SkPath
|
Completed in 27 milliseconds