Lines Matching defs:path
7 auto debugster = [](const char* prefix, const SkPath& path, uint8_t* verbs, int max) -> void {
8 int count = path.getVerbs(verbs, max);
16 SkPath path;
17 path.lineTo(20, 20);
18 path.lineTo(-10, -10);
20 debugster("no verbs", path, nullptr, 0);
21 debugster("zero max", path, verbs, 0);
22 debugster("too small", path, verbs, 2);
23 debugster("just right", path, verbs, path.countVerbs());