Lines Matching refs:numPoints
3160 int numPoints = 0; in test_raw_iter() local
3169 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3170 p.moveTo(expectedPts[numPoints]); in test_raw_iter()
3171 lastMoveToPt = expectedPts[numPoints]; in test_raw_iter()
3172 numPoints += 1; in test_raw_iter()
3178 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3182 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3183 p.lineTo(expectedPts[numPoints]); in test_raw_iter()
3184 numPoints += 1; in test_raw_iter()
3189 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3193 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3194 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3195 p.quadTo(expectedPts[numPoints], expectedPts[numPoints + 1]); in test_raw_iter()
3196 numPoints += 2; in test_raw_iter()
3201 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3205 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3206 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3207 p.conicTo(expectedPts[numPoints], expectedPts[numPoints + 1], in test_raw_iter()
3209 numPoints += 2; in test_raw_iter()
3214 expectedPts[numPoints++] = lastMoveToPt; in test_raw_iter()
3218 expectedPts[numPoints] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3219 expectedPts[numPoints + 1] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3220 expectedPts[numPoints + 2] = randomPts[(rand.nextU() >> 16) % 25]; in test_raw_iter()
3221 p.cubicTo(expectedPts[numPoints], expectedPts[numPoints + 1], in test_raw_iter()
3222 expectedPts[numPoints + 2]); in test_raw_iter()
3223 numPoints += 3; in test_raw_iter()
3250 REPORTER_ASSERT(reporter, numIterPts < numPoints); in test_raw_iter()
3256 REPORTER_ASSERT(reporter, numIterPts < numPoints + 1); in test_raw_iter()
3264 REPORTER_ASSERT(reporter, numIterPts < numPoints + 2); in test_raw_iter()
3272 REPORTER_ASSERT(reporter, numIterPts < numPoints + 3); in test_raw_iter()
3287 REPORTER_ASSERT(reporter, numIterPts == numPoints); in test_raw_iter()
4869 const size_t numPoints = numMoves + 2 * numConics; in DEF_TEST() local
4873 REPORTER_ASSERT(reporter, path.countPoints() == numPoints); in DEF_TEST()