Lines Matching defs:moveTo
558 SkPath& moveTo(SkScalar x, SkScalar y);
565 SkPath& moveTo(const SkPoint& p) {
566 return this->moveTo(p.fX, p.fY);
1062 contour, if it does not have an explicit moveTo(). e.g.
1065 // if we don't say moveTo() here, we will use the rect's start point
1803 last point. If no moveTo() call has been made for this contour, the
1809 // if we need to inject a leading moveTo first
1811 // SkPath path; path.lineTo(...); <--- need a leading moveTo(0, 0)
1812 // SkPath path; ... path.close(); path.lineTo(...) <-- need a moveTo(previous moveTo)