Lines Matching defs:path
7 auto debugster = [](const char* prefix, const SkPath& path) -> void {
9 path.isLastContourClosed() ? "" : "not ");
11 SkPath path;
12 debugster("initial", path);
13 path.close();
14 debugster("after close", path);
15 path.lineTo(0, 0);
16 debugster("after lineTo", path);
17 path.close();
18 debugster("after close", path);