Lines Matching full:path
25 static void dumpVerbs(const SkPath& path, SkString* str) {
26 SkPath::Iter iter(path, false);
53 static void toString(const SkPath& path, SkString* str) {
54 if (path.isEmpty()) {
55 str->set("path:empty");
57 toString(path.getBounds(), str);
60 dumpVerbs(path, &s);
64 str->prepend("path:[");
249 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op) {
251 toString(path, &str);
253 return this->INHERITED::clipPath(path, op);
282 void SkDumpCanvas::drawPath(const SkPath& path, const SkPaint& paint) {
284 toString(path, &str);
359 const SkPath& path, const SkMatrix* matrix,