Lines Matching refs:reporter
19 DEF_TEST(WindowRectangles, reporter) {
29 REPORTER_ASSERT(reporter, wr.count() == i);
30 REPORTER_ASSERT(reporter, !memcmp(wr.data(), windowData, i * sizeof(SkIRect)));
33 REPORTER_ASSERT(reporter, wr2 == wr);
34 REPORTER_ASSERT(reporter, wr2.count() == wr.count());
35 REPORTER_ASSERT(reporter, !memcmp(wr2.data(), wr.data(), i * sizeof(SkIRect)));
43 REPORTER_ASSERT(reporter, B == A);
44 REPORTER_ASSERT(reporter, B.data() == A.data()); // Should use copy-on-write.
47 REPORTER_ASSERT(reporter, B.data() != A.data());
48 REPORTER_ASSERT(reporter, B != A);
51 REPORTER_ASSERT(reporter, B != A);
54 REPORTER_ASSERT(reporter, A.data()[i] == windowData[i]);
55 REPORTER_ASSERT(reporter, B.data()[i] == windowData[i]);
57 REPORTER_ASSERT(reporter, A.data()[GrWindowRectangles::kMaxWindows - 1]
59 REPORTER_ASSERT(reporter, B.data()[GrWindowRectangles::kMaxWindows - 1]
64 REPORTER_ASSERT(reporter, B == A);
65 REPORTER_ASSERT(reporter, B.data() == A.data()); // Should use copy-on-write.
69 REPORTER_ASSERT(reporter, B == A);
70 REPORTER_ASSERT(reporter, B.data() != A.data());
73 REPORTER_ASSERT(reporter, B.data()[i] == A.data()[i]);
74 REPORTER_ASSERT(reporter, A.data()[i] == windowData[i]);