Lines Matching refs:path
99 SkPath path;
100 path.moveTo(conic.fPts[0]);
101 path.conicTo(conic.fPts[1], conic.fPts[2], conic.fW);
103 canvas.drawPath(path, paint);
104 path.reset();
105 path.moveTo(chopped[0].fPts[0]);
106 path.conicTo(chopped[0].fPts[1], chopped[0].fPts[2], chopped[0].fW);
107 path.moveTo(chopped[1].fPts[0]);
108 path.conicTo(chopped[1].fPts[1], chopped[1].fPts[2], chopped[1].fW);
110 canvas.drawPath(path, paint);
137 SkPath path;
138 path.moveTo(dConic.fPts[0].asSkPoint());
139 path.conicTo(dConic.fPts[1].asSkPoint(), dConic.fPts[2].asSkPoint(), dConic.fWeight);
141 canvas.drawPath(path, paint);
142 path.reset();
147 path.moveTo(chopped.fPts[0].asSkPoint());
148 path.conicTo(chopped.fPts[1].asSkPoint(), chopped.fPts[2].asSkPoint(), chopped.fWeight);
151 canvas.drawPath(path, paint);
279 SkPath path;
280 path.moveTo(dConic.fPts[0].asSkPoint());
281 path.conicTo(dConic.fPts[1].asSkPoint(), dConic.fPts[2].asSkPoint(), dConic.fWeight);
287 canvas.drawPath(path, paint);