Lines Matching refs:path
7 auto debugster = [](const char* prefix, const SkPath& path) -> void {
8 SkDebugf("%s path is %s" "empty\n", prefix, path.isEmpty() ? "" : "not ");
10 SkPath path;
11 debugster("initial", path);
12 path.moveTo(0, 0);
13 debugster("after moveTo", path);
14 path.rewind();
15 debugster("after rewind", path);
16 path.lineTo(0, 0);
17 debugster("after lineTo", path);
18 path.reset();
19 debugster("after reset", path);