Lines Matching refs:reporter
12 DEF_TEST(MetaData, reporter) {
15 REPORTER_ASSERT(reporter, !m1.findS32("int"));
16 REPORTER_ASSERT(reporter, !m1.findScalar("scalar"));
17 REPORTER_ASSERT(reporter, !m1.removeS32("int"));
18 REPORTER_ASSERT(reporter, !m1.removeScalar("scalar"));
31 REPORTER_ASSERT(reporter, m1.findS32("int", &n) && n == 12345);
32 REPORTER_ASSERT(reporter, m1.findScalar("scalar", &s) && s == SK_Scalar1/2);
33 REPORTER_ASSERT(reporter, m1.hasBool("true", true));
34 REPORTER_ASSERT(reporter, m1.hasBool("false", false));
62 REPORTER_ASSERT(reporter, gElems[i].fType == t);
63 REPORTER_ASSERT(reporter, gElems[i].fCount == count);
66 REPORTER_ASSERT(reporter, match == 1);
69 REPORTER_ASSERT(reporter, loop == SK_ARRAY_COUNT(gElems));
71 REPORTER_ASSERT(reporter, m1.removeS32("int"));
72 REPORTER_ASSERT(reporter, m1.removeScalar("scalar"));
73 REPORTER_ASSERT(reporter, m1.removeBool("true"));
74 REPORTER_ASSERT(reporter, m1.removeBool("false"));
76 REPORTER_ASSERT(reporter, !m1.findS32("int"));
77 REPORTER_ASSERT(reporter, !m1.findScalar("scalar"));
78 REPORTER_ASSERT(reporter, !m1.findBool("true"));
79 REPORTER_ASSERT(reporter, !m1.findBool("false"));