Lines Matching defs:count
1020 for (size_t count = 1; count <= SK_ARRAY_COUNT(pts); ++count) {
1022 path.addPoly(pts, SkToInt(count), SkToBool(doClose));
2712 int count = p1.getPoints(pts1, kPtCount);
2713 REPORTER_ASSERT(reporter, kPtCount == count);
2714 for (int i = 0; i < count; ++i) {
4227 return (ref.fPoints.reserved() - ref.fPoints.count()) * sizeof(SkPoint)
4228 + (ref.fVerbs.reserved() - ref.fVerbs.count()) * sizeof(uint8_t);
4879 int count = p.getPoints(pts, 4);
4880 REPORTER_ASSERT(reporter, count == 4);
5212 auto makePath = [](const SkPoint* points, size_t count, bool close) -> SkPath {
5214 for (size_t index = 0; index < count; ++index) {
5222 auto makePath2 = [](const SkPoint* points, const SkPath::Verb* verbs, size_t count) -> SkPath {
5224 for (size_t index = 0; index < count; ++index) {
5377 for (int count = 0; count < 10; ++count) {
5379 for (int add = 0; add < count; ++add) {
5430 static void add_verbs(SkPath* path, int count) {
5432 for (int i = 0; i < count; ++i) {
5873 // There had been a bug when the last moveTo index > 0, the calculated point count was incorrect