Lines Matching refs:testIndex
1600 for (size_t testIndex = 0; testIndex < testCount; ++testIndex) { in test_isRect() local
1602 path.moveTo(tests[testIndex].fPoints[0].fX, tests[testIndex].fPoints[0].fY); in test_isRect()
1603 for (index = 1; index < tests[testIndex].fPointCount; ++index) { in test_isRect()
1604 path.lineTo(tests[testIndex].fPoints[index].fX, tests[testIndex].fPoints[index].fY); in test_isRect()
1606 if (tests[testIndex].fClose) { in test_isRect()
1609 REPORTER_ASSERT(reporter, tests[testIndex].fIsRect == path.isRect(NULL)); in test_isRect()
1610 REPORTER_ASSERT(reporter, tests[testIndex].fIsRect == path.isRect(NULL, NULL)); in test_isRect()
1612 if (tests[testIndex].fIsRect) { in test_isRect()
1614 expected.set(tests[testIndex].fPoints, tests[testIndex].fPointCount); in test_isRect()
1622 REPORTER_ASSERT(reporter, isClosed == tests[testIndex].fClose); in test_isRect()
1625 if (!tests[testIndex].fClose) { in test_isRect()
1776 for (size_t testIndex = 0; testIndex < testCount; ++testIndex) { in test_isNestedRects() local
1781 path.moveTo(tests[testIndex].fPoints[0].fX, tests[testIndex].fPoints[0].fY); in test_isNestedRects()
1782 for (index = 1; index < tests[testIndex].fPointCount; ++index) { in test_isNestedRects()
1783 path.lineTo(tests[testIndex].fPoints[index].fX, tests[testIndex].fPoints[index].fY); in test_isNestedRects()
1785 if (tests[testIndex].fClose) { in test_isNestedRects()
1791 REPORTER_ASSERT(reporter, tests[testIndex].fIsNestedRect == path.isNestedRects(NULL)); in test_isNestedRects()
1792 if (tests[testIndex].fIsNestedRect) { in test_isNestedRects()
1796 testBounds.set(tests[testIndex].fPoints, tests[testIndex].fPointCount); in test_isNestedRects()
1804 expectedDirs[1] = tests[testIndex].fDirection; in test_isNestedRects()