Lines Matching refs:reporter

123 DEF_TEST(BlurDrawing, reporter) {
165 REPORTER_ASSERT(reporter,
310 DEF_TEST(BlurSigmaRange, reporter) {
343 REPORTER_ASSERT(reporter, match(rectSpecialCaseResult, bruteForce1DResult, kSize, 5));
344 REPORTER_ASSERT(reporter, match(generalCaseResult, bruteForce1DResult, kSize, 15));
345 REPORTER_ASSERT(reporter, match(groundTruthResult, bruteForce1DResult, kSize, 1));
359 DEF_TEST(BlurAsABlur, reporter) {
377 REPORTER_ASSERT(reporter, sigma <= 0);
379 REPORTER_ASSERT(reporter, sigma > 0);
383 REPORTER_ASSERT(reporter, success);
384 REPORTER_ASSERT(reporter, rec.fSigma == sigma);
385 REPORTER_ASSERT(reporter, rec.fStyle == style);
387 REPORTER_ASSERT(reporter, !success);
395 REPORTER_ASSERT(reporter, dst.contains(src));
413 REPORTER_ASSERT(reporter, !success);
421 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SmallBoxBlurBug, reporter, ctxInfo) {
436 DEF_TEST(BlurredRRectNinePatchComputation, reporter) {
458 REPORTER_ASSERT(reporter, !ninePatchable);
472 REPORTER_ASSERT(reporter, ninePatchable);
473 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(SkIntToScalar(size.fWidth), kAns));
474 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(SkIntToScalar(size.fHeight), kAns));
491 REPORTER_ASSERT(reporter, ninePatchable);
492 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(SkIntToScalar(size.fWidth), kXAns));
493 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(SkIntToScalar(size.fHeight), kYAns));
498 DEF_TEST(EmbossPerlinCrash, reporter) {
513 DEF_TEST(BlurZeroSigma, reporter) {
533 REPORTER_ASSERT(reporter, *p == SkPackARGB32(0xFF, 0, 0, 0));
536 REPORTER_ASSERT(reporter, *p == 0);
545 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(BlurMaskBiggerThanDest, reporter, ctxInfo) {
552 ERRORF(reporter, "Could not create surface for test.");
569 REPORTER_ASSERT(reporter, SkColorGetR(readback.getColor(15, 15)) > 128);
570 REPORTER_ASSERT(reporter, SkColorGetG(readback.getColor(15, 15)) == 0);
571 REPORTER_ASSERT(reporter, SkColorGetB(readback.getColor(15, 15)) == 0);
572 REPORTER_ASSERT(reporter, readback.getColor(31, 31) == SK_ColorBLACK);
575 DEF_TEST(zero_blur, reporter) {