Lines Matching full:path
14 SkPath path;
15 path.addRect(rect);
16 return path;
21 SkPath path;
22 path.addRect(rect);
23 return path;
27 SkPath path;
28 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
29 return path;
33 SkPath path;
34 path.moveTo(cx - l / 2, cy);
35 path.lineTo(cx + l / 2, cy);
36 return path;
108 SkPath path = paths[pathIndex](cx, cy, size);
109 path.setFillType(SkPath::kInverseWinding_FillType);
110 canvas->drawPath(path, paint);
112 path.setFillType(SkPath::kWinding_FillType);
113 canvas->drawPath(path, outlinePaint);