/third_party/skia/docs/examples/ |
D | Path_setLastPt_2.cpp | 14 path.getLastPt(&pt); 15 path2.getLastPt(&pt2);
|
D | Path_getLastPt.cpp | 14 path.getLastPt(&last); in draw()
|
D | Path_rMoveTo.cpp | 18 path.getLastPt(&lastPt);
|
D | Path_arcTo_2_a.cpp | 24 (void) path.getLastPt(&lastPt);
|
D | Path_arcTo_2_b.cpp | 24 (void) path.getLastPt(&lastPt);
|
/third_party/flutter/skia/docs/examples/ |
D | Path_setLastPt_2.cpp | 14 path.getLastPt(&pt); 15 path2.getLastPt(&pt2);
|
D | Path_getLastPt.cpp | 14 path.getLastPt(&last); in draw()
|
D | Path_rMoveTo.cpp | 18 path.getLastPt(&lastPt);
|
D | Path_arcTo_2_b.cpp | 24 (void) path.getLastPt(&lastPt);
|
D | Path_arcTo_2_a.cpp | 24 (void) path.getLastPt(&lastPt);
|
/third_party/skia/samplecode/ |
D | SampleSimpleStroker.cpp | 62 bool getLastPt(SkPoint* lastPt) const { in getLastPt() function in __anon1fcc552d0111::PathRecorder 200 fInner.getLastPt(&innerLastPt); in endcap()
|
/third_party/flutter/skia/src/pathops/ |
D | SkPathWriter.cpp | 357 if (!fPathPtr->getLastPt(&prior)) { in assemble() 363 SkAssertResult(contour.getLastPt(&next)); in assemble()
|
D | SkOpBuilder.cpp | 31 SkAssertResult(path->getLastPt(&lastPt)); in ReversePath()
|
/third_party/skia/src/pathops/ |
D | SkPathWriter.cpp | 354 if (!fPathPtr->getLastPt(&prior)) { in assemble() 360 SkAssertResult(contour.getLastPt(&next)); in assemble()
|
D | SkOpBuilder.cpp | 31 SkAssertResult(path->getLastPt(&lastPt)); in ReversePath()
|
/third_party/flutter/skia/src/utils/win/ |
D | SkDWriteGeometrySink.cpp | 116 fPath->getLastPt(&lastPt); in SK_STDMETHODIMP_()
|
/third_party/flutter/skia/src/core/ |
D | SkPath.cpp | 722 bool SkPath::getLastPt(SkPoint* lastPt) const { in getLastPt() function in SkPath 811 this->getLastPt(&pt); in rMoveTo() 844 this->getLastPt(&pt); in rLineTo() 865 this->getLastPt(&pt); in rQuadTo() 898 this->getLastPt(&pt); in rConicTo() 922 this->getLastPt(&pt); in rCubicTo() 1382 } else if (!this->getLastPt(&lastPt) || in arcTo() 1430 this->getLastPt(&srcPts[0]); in arcTo() 1554 this->getLastPt(¤tPoint); in rArcTo() 1594 this->getLastPt(&start); in arcTo() [all …]
|
/third_party/flutter/skia/samplecode/ |
D | SampleHairline.cpp | 131 path->getLastPt(&start); in add_cubic()
|
/third_party/skia/src/core/ |
D | SkPath.cpp | 511 bool SkPath::getLastPt(SkPoint* lastPt) const { in getLastPt() function in SkPath 671 this->getLastPt(&pt); in rLineTo() 691 this->getLastPt(&pt); in rQuadTo() 724 this->getLastPt(&pt); in rConicTo() 747 this->getLastPt(&pt); in rCubicTo() 1120 } else if (!this->getLastPt(&lastPt) || in arcTo() 1168 this->getLastPt(&srcPts[0]); in arcTo() 1298 this->getLastPt(¤tPoint); in rArcTo() 1340 this->getLastPt(&start); in arcTo() 1413 if (fLastMoveToIndex < 0 || !this->getLastPt(&lastPt) || in addPath()
|
/third_party/flutter/skia/src/utils/ |
D | SkParsePath.cpp | 179 path.getLastPt(&c); in FromSVGString()
|
D | SkDashPath.cpp | 202 if (!dstPath->getLastPt(&last) || last != pts[0]) { in cull_path()
|
/third_party/skia/src/utils/ |
D | SkParsePath.cpp | 179 path.getLastPt(&c); in FromSVGString()
|
D | SkDashPath.cpp | 204 if (!dstPath->getLastPt(&last) || last != pts[0]) { in cull_path()
|
/third_party/flutter/skia/include/core/ |
D | SkPath.h | 1344 bool getLastPt(SkPoint* lastPt) const;
|
/third_party/flutter/skia/tests/ |
D | PathTest.cpp | 324 path.getLastPt(&last); in test_path_close_issue1474() 335 path.getLastPt(&last); in test_path_close_issue1474() 346 path.getLastPt(&last); in test_path_close_issue1474() 357 path.getLastPt(&last); in test_path_close_issue1474() 3858 REPORTER_ASSERT(reporter, p.getLastPt(&pt) && pt.fX == 1 && pt.fY == 1); in test_arcTo() 3861 REPORTER_ASSERT(reporter, p.getLastPt(&pt) && pt.fX == 1 && pt.fY == -1); in test_arcTo() 3955 REPORTER_ASSERT(reporter, p.getLastPt(&pt)); in test_extendClosedPath() 3990 REPORTER_ASSERT(reporter, !p.getLastPt(nullptr)); in test_get_point() 3991 REPORTER_ASSERT(reporter, !p.getLastPt(&pt) && pt == SkPoint::Make(0, 0)); in test_get_point() 3995 REPORTER_ASSERT(reporter, p.getLastPt(nullptr)); in test_get_point() [all …]
|