Lines Matching refs:reporter
14 static void test_copy(skiatest::Reporter* reporter) { in test_copy() argument
28 REPORTER_ASSERT(reporter, paint == copiedPaint); in test_copy()
34 REPORTER_ASSERT(reporter, paintGenID == copiedPaintGenID); in test_copy()
35 REPORTER_ASSERT(reporter, !memcmp(&paint, &copiedPaint, sizeof(paint))); in test_copy()
40 REPORTER_ASSERT(reporter, paint == copiedPaint); in test_copy()
44 REPORTER_ASSERT(reporter, paint.getGenerationID() == paintGenID); in test_copy()
45 REPORTER_ASSERT(reporter, copiedPaint.getGenerationID() != copiedPaintGenID); in test_copy()
47 REPORTER_ASSERT(reporter, memcmp(&paint, &copiedPaint, sizeof(paint))); in test_copy()
54 REPORTER_ASSERT(reporter, cleanPaint == paint); in test_copy()
55 REPORTER_ASSERT(reporter, cleanPaint == copiedPaint); in test_copy()
59 REPORTER_ASSERT(reporter, paint.getGenerationID() != paintGenID); in test_copy()
60 REPORTER_ASSERT(reporter, copiedPaint.getGenerationID() != copiedPaintGenID); in test_copy()
61 REPORTER_ASSERT(reporter, memcmp(&cleanPaint, &paint, sizeof(cleanPaint))); in test_copy()
62 REPORTER_ASSERT(reporter, memcmp(&cleanPaint, &copiedPaint, sizeof(cleanPaint))); in test_copy()
68 static void regression_cubic(skiatest::Reporter* reporter) { in regression_cubic() argument
97 REPORTER_ASSERT(reporter, maxR.contains(strokeR)); in regression_cubic()
100 static void TestPaint(skiatest::Reporter* reporter) { in TestPaint() argument
102 test_copy(reporter); in TestPaint()
105 regression_cubic(reporter); in TestPaint()