Lines Matching full:reporter
14 static void standardTestCases(skiatest::Reporter* reporter) {
47 REPORTER_ASSERT(reporter, 0);
264 static void oneOffTest1(skiatest::Reporter* reporter, size_t outer, size_t inner) {
280 REPORTER_ASSERT(reporter, 0);
289 DEF_TEST(PathOpsQuadIntersectionOneOff, reporter) {
290 oneOffTest1(reporter, 0, 1);
293 static void oneOffTests(skiatest::Reporter* reporter) {
296 oneOffTest1(reporter, outer, inner);
314 static void coincidentTestOne(skiatest::Reporter* reporter, int test1, int test2) {
321 REPORTER_ASSERT(reporter
322 REPORTER_ASSERT(reporter, intersections2.used() == 2);
328 REPORTER_ASSERT(reporter, pt1.approximatelyEqual(pt2));
332 static void coincidentTest(skiatest::Reporter* reporter) {
334 coincidentTestOne(reporter, testIndex, testIndex + 1);
338 DEF_TEST(PathOpsQuadIntersectionCoincidenceOneOff, reporter) {
339 coincidentTestOne(reporter, 0, 1);
505 DEF_TEST(PathOpsQuadIntersection, reporter) {
506 oneOffTests(reporter);
507 coincidentTest(reporter);
508 standardTestCases(reporter);