Lines Matching refs:reporter

21 UNIX_ONLY_TEST(SkUnicode_Client, reporter) {
30 REPORTER_ASSERT(reporter, !SkUnicode::isPartOfWhiteSpaceBreak(flag));
35 UNIX_ONLY_TEST(SkUnicode_Native, reporter) {
42 REPORTER_ASSERT(reporter, !SkUnicode::isPartOfWhiteSpaceBreak(flag));
46 UNIX_ONLY_TEST(SkUnicode_GetWords, reporter) {
52 REPORTER_ASSERT(reporter, result);
53 REPORTER_ASSERT(reporter, results.size() == expected.size());
55 REPORTER_ASSERT(reporter, results[i] == expected[i]);
59 UNIX_ONLY_TEST(SkUnicode_GetBidiRegionsLTR, reporter) {
67 REPORTER_ASSERT(reporter, result);
68 REPORTER_ASSERT(reporter, results.size() == 1);
69 REPORTER_ASSERT(reporter, results[0].start == 0 &&
73 UNIX_ONLY_TEST(SkUnicode_GetBidiRegionsRTL, reporter) {
81 REPORTER_ASSERT(reporter, result);
82 REPORTER_ASSERT(reporter, results.size() == 1);
83 REPORTER_ASSERT(reporter, results[0].start == 0 &&
88 UNIX_ONLY_TEST(SkUnicode_GetBidiRegionsMix1, reporter) {
112 REPORTER_ASSERT(reporter, result);
113 REPORTER_ASSERT(reporter, results.size() == expected.size());
115 REPORTER_ASSERT(reporter, results[i].start == expected[i].start &&
121 UNIX_ONLY_TEST(SkUnicode_GetBidiRegionsMix2, reporter) {
135 REPORTER_ASSERT(reporter, result);
136 REPORTER_ASSERT(reporter, results.size() == expected.size());
138 REPORTER_ASSERT(reporter, results[i].start == expected[i].start &&
144 UNIX_ONLY_TEST(SkUnicode_ToUpper, reporter) {
149 REPORTER_ASSERT(reporter, icu_result1.equals(upper));
151 REPORTER_ASSERT(reporter, icu_result2.equals(upper));
154 UNIX_ONLY_TEST(SkUnicode_ComputeCodeUnitFlags, reporter) {
164 REPORTER_ASSERT(reporter, result);
165 REPORTER_ASSERT(reporter, results.size() == SkToS16(text.size() + 1));
183 REPORTER_ASSERT(reporter, flags == expected);
187 UNIX_ONLY_TEST(SkUnicode_ReorderVisual, reporter) {
194 REPORTER_ASSERT(reporter, expected[i] == logicalOrder[i]);