Lines Matching defs:paths
77 SkTArray<SkPath> paths;
78 paths.push_back();
79 paths.back().moveTo(0.f, 0.f);
80 paths.back().lineTo(98.f, 100.f);
81 paths.back().lineTo(100.f, 100.f);
82 paths.back().conicTo(150.f, 50.f, 100.f, 0.f, 0.6f);
83 paths.back().conicTo(148.f, 50.f, 100.f, 100.f, 0.6f);
84 paths.back().conicTo(50.f, 30.f, 0.f, 100.f, 0.9f);
86 paths.push_back();
87 paths.back().addCircle(30.f, 30.f, 30.f);
88 paths.back().addRect(SkRect::MakeXYWH(45.f, 45.f, 50.f, 60.f));
89 paths.back().setFillType(SkPathFillType::kEvenOdd);
93 for (const SkPath& path : paths) {