Lines Matching refs:reporter
37 static void TestString(skiatest::Reporter* reporter) { in TestString() argument
43 REPORTER_ASSERT(reporter, a.isEmpty()); in TestString()
44 REPORTER_ASSERT(reporter, a == b && a == c && a == d); in TestString()
52 REPORTER_ASSERT(reporter, !a.isEmpty()); in TestString()
53 REPORTER_ASSERT(reporter, a.size() == 5); in TestString()
54 REPORTER_ASSERT(reporter, a == b && a == c && a == d); in TestString()
55 REPORTER_ASSERT(reporter, a.equals("hello", 5)); in TestString()
56 REPORTER_ASSERT(reporter, a.equals("hello")); in TestString()
57 REPORTER_ASSERT(reporter, !a.equals("help")); in TestString()
63 REPORTER_ASSERT(reporter, a == e && a == f && a == g); in TestString()
67 REPORTER_ASSERT(reporter, a != b && a != c && b == c); in TestString()
74 REPORTER_ASSERT(reporter, a.equals("hello world") && a == e && a == f); in TestString()
78 REPORTER_ASSERT(reporter, a.isEmpty() && b.isEmpty() && a == b); in TestString()
87 REPORTER_ASSERT(reporter, a.equals("72036854775808")); in TestString()
91 REPORTER_ASSERT(reporter, a.equals("-1844674407370")); in TestString()
95 REPORTER_ASSERT(reporter, a.equals("000073709551616")); in TestString()
99 REPORTER_ASSERT(reporter, a.equals("-000429496729612")); in TestString()
122 REPORTER_ASSERT(reporter, a.size() <= SkStrAppendScalar_MaxSize); in TestString()
124 REPORTER_ASSERT(reporter, a.equals(gRec[i].fString)); in TestString()
127 REPORTER_ASSERT(reporter, SkStringPrintf("%i", 0).equals("0")); in TestString()
131 REPORTER_ASSERT(reporter, buffer[18] == 'a'); in TestString()
132 REPORTER_ASSERT(reporter, buffer[19] == 'a'); in TestString()
133 REPORTER_ASSERT(reporter, buffer[20] == 'a'); in TestString()
135 REPORTER_ASSERT(reporter, buffer[18] == ' '); in TestString()
136 REPORTER_ASSERT(reporter, buffer[19] == 0); in TestString()
137 REPORTER_ASSERT(reporter, buffer[20] == 'a'); in TestString()