Lines Matching refs:numPoints

3175         int numPoints = 0;  in test_raw_iter()  local
3184 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3185 p.moveTo(expectedPts[numPoints]); in test_raw_iter()
3186 lastMoveToPt = expectedPts[numPoints]; in test_raw_iter()
3187 numPoints += 1; in test_raw_iter()
3193 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3197 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3198 p.lineTo(expectedPts[numPoints]); in test_raw_iter()
3199 numPoints += 1; in test_raw_iter()
3204 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3208 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3209 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3210 p.quadTo(expectedPts[numPoints], expectedPts[numPoints + 1]); in test_raw_iter()
3211 numPoints += 2; in test_raw_iter()
3216 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3220 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3221 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3222 p.conicTo(expectedPts[numPoints], expectedPts[numPoints + 1], in test_raw_iter()
3224 numPoints += 2; in test_raw_iter()
3229 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3233 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3234 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3235 expectedPts[numPoints + 2] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3236 p.cubicTo(expectedPts[numPoints], expectedPts[numPoints + 1], in test_raw_iter()
3237 expectedPts[numPoints + 2]); in test_raw_iter()
3238 numPoints += 3; in test_raw_iter()
3265 REPORTER_ASSERT(reporter, numIterPts < numPoints); in test_raw_iter()
3271 REPORTER_ASSERT(reporter, numIterPts < numPoints + 1); in test_raw_iter()
3279 REPORTER_ASSERT(reporter, numIterPts < numPoints + 2); in test_raw_iter()
3287 REPORTER_ASSERT(reporter, numIterPts < numPoints + 3); in test_raw_iter()
3302 REPORTER_ASSERT(reporter, numIterPts == numPoints); in test_raw_iter()
4896 const size_t numPoints = numMoves + 2 * numConics; in DEF_TEST() local
4900 REPORTER_ASSERT(reporter, path.countPoints() == numPoints); in DEF_TEST()