Lines Matching defs:aCount
183 static void run_concat_test(skiatest::Reporter* reporter, int aCount, int bCount) {
188 for (int i = 0; i < aCount; ++i) {
192 listB.emplace_back(aCount + i);
195 REPORTER_ASSERT(reporter, listA.count() == aCount && listB.count() == bCount);
196 REPORTER_ASSERT(reporter, C::gInstCnt == aCount + bCount);
200 REPORTER_ASSERT(reporter, listA.count() == aCount + bCount);
205 REPORTER_ASSERT(reporter, C::gInstCnt == aCount + bCount);
213 REPORTER_ASSERT(reporter, i == (aCount + bCount));
217 static void run_concat_trivial_test(skiatest::Reporter* reporter, int aCount, int bCount) {
225 for (int i = 0; i < aCount; ++i) {
229 listB.push_back({aCount + i});
232 REPORTER_ASSERT(reporter, listA.count() == aCount && listB.count() == bCount);
235 REPORTER_ASSERT(reporter, listA.count() == aCount + bCount);
244 REPORTER_ASSERT(reporter, i == (aCount + bCount));