• Home
  • Raw
  • Download

Lines Matching refs:reporter

23 template <typename T> void assert16(skiatest::Reporter* reporter, const T data[],  in assert16()  argument
28 REPORTER_ASSERT(reporter, data[0] == m0); in assert16()
29 REPORTER_ASSERT(reporter, data[1] == m1); in assert16()
30 REPORTER_ASSERT(reporter, data[2] == m2); in assert16()
31 REPORTER_ASSERT(reporter, data[3] == m3); in assert16()
33 REPORTER_ASSERT(reporter, data[4] == m4); in assert16()
34 REPORTER_ASSERT(reporter, data[5] == m5); in assert16()
35 REPORTER_ASSERT(reporter, data[6] == m6); in assert16()
36 REPORTER_ASSERT(reporter, data[7] == m7); in assert16()
38 REPORTER_ASSERT(reporter, data[8] == m8); in assert16()
39 REPORTER_ASSERT(reporter, data[9] == m9); in assert16()
40 REPORTER_ASSERT(reporter, data[10] == m10); in assert16()
41 REPORTER_ASSERT(reporter, data[11] == m11); in assert16()
43 REPORTER_ASSERT(reporter, data[12] == m12); in assert16()
44 REPORTER_ASSERT(reporter, data[13] == m13); in assert16()
45 REPORTER_ASSERT(reporter, data[14] == m14); in assert16()
46 REPORTER_ASSERT(reporter, data[15] == m15); in assert16()
67 static void test_common_angles(skiatest::Reporter* reporter) { in test_common_angles() argument
75 REPORTER_ASSERT(reporter, rot3x3.rectStaysRect()); in test_common_angles()
79 void TestMatrix44(skiatest::Reporter* reporter) { in TestMatrix44() argument
87 REPORTER_ASSERT(reporter, is_identity(iden1)); in TestMatrix44()
92 REPORTER_ASSERT(reporter, is_identity(iden1)); in TestMatrix44()
97 REPORTER_ASSERT(reporter, is_identity(iden1)); in TestMatrix44()
106 REPORTER_ASSERT(reporter, mat.invert(NULL)); in TestMatrix44()
109 REPORTER_ASSERT(reporter, is_identity(iden1)); in TestMatrix44()
111 REPORTER_ASSERT(reporter, is_identity(iden2)); in TestMatrix44()
120 assert16<float>(reporter, dataf, in TestMatrix44()
126 assert16<double>(reporter, datad, 1, 0, 0, 0, in TestMatrix44()
131 assert16<float>(reporter, dataf, 1, 0, 0, 2, in TestMatrix44()
136 assert16<double>(reporter, datad, 1, 0, 0, 2, in TestMatrix44()
143 test_common_angles(reporter); in TestMatrix44()