Lines Matching refs:lineTo
120 * changed (e.g. lineTo(), addRect(), etc.) then the cached value will be
218 * a moveTo and a lineTo). If so, and line[] is not null, it sets the 2
338 void lineTo(SkScalar x, SkScalar y);
346 void lineTo(const SkPoint& p) {
347 this->lineTo(p.fX, p.fY);
350 /** Same as lineTo, but the coordinates are considered relative to the last
454 automatic lineTo() is added to connect the current contour to the start
678 * this->lineTo(pts[i]);
982 // called before we add points for lineTo, quadTo, cubicTo, checking to see
985 // SkPath path; path.lineTo(...); <--- need a leading moveTo(0, 0)
986 // SkPath path; ... path.close(); path.lineTo(...) <-- need a moveTo(previous moveTo)