Searched refs:stopD (Results 1 – 6 of 6) sorted by relevance
/external/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()
|
/external/skqp/src/core/ |
D | SkPathMeasure.cpp | 653 bool SkPathMeasure::getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, in getSegment() argument 662 if (stopD > length) { in getSegment() 663 stopD = length; in getSegment() 665 if (!(startD <= stopD)) { // catch NaN values as well in getSegment() 678 const Segment* stopSeg = this->distanceToSegment(stopD, &stopT); in getSegment()
|
/external/skia/include/core/ |
D | SkPathMeasure.h | 66 bool getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo);
|
D | SkContourMeasure.h | 50 bool SK_WARN_UNUSED_RESULT getSegment(SkScalar startD, SkScalar stopD, SkPath* dst,
|
/external/skqp/include/core/ |
D | SkPathMeasure.h | 71 bool getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo);
|