Searched refs:stopD (Results 1 – 12 of 12) sorted by relevance
/third_party/skia/src/core/ |
D | SkPathMeasure.cpp | 38 bool SkPathMeasure::getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo) { in getSegment() argument 39 return fContour && fContour->getSegment(startD, stopD, dst, startWithMoveTo); in getSegment()
|
D | SkContourMeasure.cpp | 624 bool SkContourMeasure::getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, in getSegment() argument 633 if (stopD > length) { in getSegment() 634 stopD = length; in getSegment() 636 if (!(startD <= stopD)) { // catch NaN values as well in getSegment() 649 const Segment* stopSeg = this->distanceToSegment(stopD, &stopT); in getSegment()
|
/third_party/flutter/skia/src/core/ |
D | SkPathMeasure.cpp | 38 bool SkPathMeasure::getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo) { in getSegment() argument 39 return fContour && fContour->getSegment(startD, stopD, dst, startWithMoveTo); in getSegment()
|
D | SkContourMeasure.cpp | 598 bool SkContourMeasure::getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, in getSegment() argument 607 if (stopD > length) { in getSegment() 608 stopD = length; in getSegment() 610 if (!(startD <= stopD)) { // catch NaN values as well in getSegment() 623 const Segment* stopSeg = this->distanceToSegment(stopD, &stopT); in getSegment()
|
/third_party/flutter/engine/flutter/lib/ui/painting/ |
D | path_measure.cc | 98 float stopD, in getSegment() argument 106 measures_[contourIndex]->getSegment(startD, stopD, &dst, startWithMoveTo); in getSegment()
|
D | path_measure.h | 38 float stopD,
|
/third_party/flutter/skia/include/core/ |
D | SkPathMeasure.h | 65 bool getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo);
|
D | SkContourMeasure.h | 49 bool SK_WARN_UNUSED_RESULT getSegment(SkScalar startD, SkScalar stopD, SkPath* dst,
|
/third_party/skia/include/core/ |
D | SkPathMeasure.h | 65 bool getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo);
|
D | SkContourMeasure.h | 49 bool SK_WARN_UNUSED_RESULT getSegment(SkScalar startD, SkScalar stopD, SkPath* dst,
|
/third_party/skia/modules/canvaskit/ |
D | canvaskit_bindings.cpp | 1221 … SkScalar stopD, bool startWithMoveTo) -> SkPath { in EMSCRIPTEN_BINDINGS() argument 1223 bool ok = self.getSegment(startD, stopD, &p, startWithMoveTo); in EMSCRIPTEN_BINDINGS()
|
/third_party/skia/modules/canvaskit/npm_build/types/ |
D | index.d.ts | 1593 getSegment(startD: number, stopD: number, startWithMoveTo: boolean): Path;
|