Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

298 static void oneOff(skiatest::Reporter* reporter, const ConicPts& conic1, const ConicPts& conic2,
319 REPORTER_ASSERT(reporter, !coin || intersections.used() == 2);
328 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(iPt));
329 REPORTER_ASSERT(reporter, xy2.approximatelyEqual(iPt));
330 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
332 reporter->bumpTestCount();
335 static void oneOff(skiatest::Reporter* reporter, int outer, int inner) {
338 oneOff(reporter, c1, c2, false);
341 static void oneOffTests(skiatest::Reporter* reporter) {
344 oneOff(reporter, outer, inner);
349 DEF_TEST(PathOpsConicIntersectionOneOff, reporter) {
350 oneOff(reporter, 0, 1);
353 DEF_TEST(PathOpsConicIntersection, reporter) {
354 oneOffTests(reporter);