Lines Matching defs:path
13 // wrap path to keep track of whether the contour is initialized and non-empty
14 SkPathWriter::SkPathWriter(SkPath& path)
15 : fPathPtr(&path)
26 SkDebugf("path.close();\n");
37 SkDebugf("path.conicTo(%1.9g,%1.9g, %1.9g,%1.9g, %1.9g);\n",
46 SkDebugf("path.cubicTo(%1.9g,%1.9g, %1.9g,%1.9g, %1.9g,%1.9g);\n",
121 SkDebugf("path.lineTo(%1.9g,%1.9g);\n", fDefer[1]->fPt.fX, fDefer[1]->fPt.fY);
141 SkDebugf("path.moveTo(%1.9g,%1.9g);\n", fFirstPtT->fPt.fX, fFirstPtT->fPt.fY);
149 SkDebugf("path.quadTo(%1.9g,%1.9g, %1.9g,%1.9g);\n",
155 // if last point to be written matches the current path's first point, alter the
156 // last to avoid writing a degenerate lineTo when the path is closed
199 reassemble contour pieces into new path
363 /* TODO: if there is a gap between open path written so far and path to come,