Lines Matching defs:path
204 // TODO(kjlubick): put the ability to fuzz a path in shared file, with
208 SkPath path;
215 path.moveTo(a, b);
219 path.lineTo(a, b);
223 path.quadTo(a, b, c, d);
227 path.conicTo(a, b, c, d, e);
231 path.cubicTo(a, b, c, d, e, f);
235 path.arcTo(a, b, c, d, e);
239 path.close();
242 cnv->drawPath(path, p);
246 cnv->clipPath(path, SkClipOp::kIntersect, bl);