Lines Matching defs:numIterPts
3239 int numIterPts = 0;
3249 REPORTER_ASSERT(reporter, numIterPts < numPoints);
3250 REPORTER_ASSERT(reporter, pts[0] == expectedPts[numIterPts]);
3252 numIterPts += 1;
3255 REPORTER_ASSERT(reporter, numIterPts < numPoints + 1);
3257 REPORTER_ASSERT(reporter, pts[1] == expectedPts[numIterPts]);
3259 numIterPts += 1;
3263 REPORTER_ASSERT(reporter, numIterPts < numPoints + 2);
3265 REPORTER_ASSERT(reporter, pts[1] == expectedPts[numIterPts]);
3266 REPORTER_ASSERT(reporter, pts[2] == expectedPts[numIterPts + 1]);
3268 numIterPts += 2;
3271 REPORTER_ASSERT(reporter, numIterPts < numPoints + 3);
3273 REPORTER_ASSERT(reporter, pts[1] == expectedPts[numIterPts]);
3274 REPORTER_ASSERT(reporter, pts[2] == expectedPts[numIterPts + 1]);
3275 REPORTER_ASSERT(reporter, pts[3] == expectedPts[numIterPts + 2]);
3277 numIterPts += 3;
3286 REPORTER_ASSERT(reporter, numIterPts == numPoints);