Home
last modified time | relevance | path

Searched refs:stopD (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/src/core/
DSkPathMeasure.cpp38 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()
DSkContourMeasure.cpp598 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/skia/src/core/
DSkPathMeasure.cpp38 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()
DSkContourMeasure.cpp624 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/engine/flutter/lib/ui/painting/
Dpath_measure.cc98 float stopD, in getSegment() argument
106 measures_[contourIndex]->getSegment(startD, stopD, &dst, startWithMoveTo); in getSegment()
Dpath_measure.h38 float stopD,
/third_party/flutter/skia/include/core/
DSkPathMeasure.h65 bool getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo);
DSkContourMeasure.h49 bool SK_WARN_UNUSED_RESULT getSegment(SkScalar startD, SkScalar stopD, SkPath* dst,
/third_party/skia/include/core/
DSkPathMeasure.h65 bool getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo);
DSkContourMeasure.h49 bool SK_WARN_UNUSED_RESULT getSegment(SkScalar startD, SkScalar stopD, SkPath* dst,
/third_party/skia/modules/canvaskit/
Dcanvaskit_bindings.cpp1221 … 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/
Dindex.d.ts1593 getSegment(startD: number, stopD: number, startWithMoveTo: boolean): Path;