Lines Matching defs:path
7 auto debugster = [](const char* prefix, const SkPath& path) -> void {
9 if (path.isLine(line)) {
16 SkPath path;
17 debugster("empty", path);
18 path.lineTo(0, 0);
19 debugster("zero line", path);
20 path.rewind();
21 path.moveTo(10, 10);
22 path.lineTo(20, 20);
23 debugster("line", path);
24 path.moveTo(20, 20);
25 debugster("second move", path);