Lines Matching refs:startD
560 SkScalar startT = 0, startD = 0;
563 startD = seg[-1].fDistance;
571 SkASSERT(distance >= startD);
572 SkASSERT(seg->fDistance > startD);
574 *t = startT + (seg->getScalarT() - startT) * (distance - startD) / (seg->fDistance - startD);
624 bool SkContourMeasure::getSegment(SkScalar startD, SkScalar stopD, SkPath* dst,
630 if (startD < 0) {
631 startD = 0;
636 if (!(startD <= stopD)) { // catch NaN values as well
645 const Segment* seg = this->distanceToSegment(startD, &startT);