Lines Matching defs:moveTo
141 // flag to require a moveTo if we begin with something else, like lineTo etc.
544 this->moveTo(x, y);
617 SkPath& SkPath::moveTo(SkScalar x, SkScalar y) {
640 return this->moveTo(pt.fX + x, pt.fY + y);
653 this->moveTo(x, y);
776 // signal that we need a moveTo to follow us (unless we're done)
802 const int kVerbs = 5; // moveTo + 3x lineTo + close
807 this->moveTo(iter.current());
959 ? 9 // moveTo + 4x conicTo + 3x lineTo + close
960 : 10; // moveTo + 4x lineTo + 4x conicTo + close
969 this->moveTo(rrectIter.current());
1046 /* If addOval() is called after previous moveTo(),
1050 moveTo() would mark the path non empty.
1063 const int kVerbs = 6; // moveTo + 4x conicTo + close
1071 this->moveTo(ovalIter.current());
1104 return forceMoveTo ? this->moveTo(lonePt) : this->lineTo(lonePt);
1119 this->moveTo(pt);
1418 this->moveTo(mappedPts[0]);
1510 this->moveTo(pts->fX, pts->fY);
1599 tmp.moveTo(pts[0]);
1918 append_params(&builder, "path.moveTo", &pts[0], 1, asType);
1968 append_params(&descSk, "path.moveTo", &points[0], 1, kDec_SkScalarAsStringType);
2233 // Given path.moveTo(0, 0); path.lineTo(1, 1);
2247 SkPoint fFirstPt {0, 0}; // The first point of the contour, e.g. moveTo(x,y)
2288 // There's an additional moveTo between two blocks of other verbs, so the path must have
2310 // Looking for the last moveTo before non-move verbs start
2408 int ptCount = 1; // moveTo
3257 path->moveTo(oval.centerX(), oval.centerY());
3789 rec->fResult.moveTo(pts[0]);