Lines Matching full:path
16 SkPath path;
17 path.addRect(rect);
18 return path;
23 SkPath path;
24 path.addRect(rect);
25 return path;
29 SkPath path;
30 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
31 return path;
35 SkPath path;
36 path.moveTo(cx - l / 2, cy);
37 path.lineTo(cx + l / 2, cy);
38 return path;
124 SkPath path = paths[pathIndex](cx, cy, size);
125 path.setFillType(SkPath::kInverseWinding_FillType);
126 canvas->drawPath(path, paint);
128 path.setFillType(SkPath::kWinding_FillType);
129 canvas->drawPath(path, outlinePaint);