Lines Matching refs:REPORTER_ASSERT
41 REPORTER_ASSERT(reporter, a.isEmpty());
42 REPORTER_ASSERT(reporter, a == b && a == c && a == d);
50 REPORTER_ASSERT(reporter, !a.isEmpty());
51 REPORTER_ASSERT(reporter, a.size() == 5);
52 REPORTER_ASSERT(reporter, a == b && a == c && a == d);
53 REPORTER_ASSERT(reporter, a.equals("hello", 5));
54 REPORTER_ASSERT(reporter, a.equals("hello"));
55 REPORTER_ASSERT(reporter, !a.equals("help"));
57 REPORTER_ASSERT(reporter, a.startsWith("hell"));
58 REPORTER_ASSERT(reporter, a.startsWith('h'));
59 REPORTER_ASSERT(reporter, !a.startsWith( "ell"));
60 REPORTER_ASSERT(reporter, !a.startsWith( 'e'));
61 REPORTER_ASSERT(reporter, a.startsWith(""));
62 REPORTER_ASSERT(reporter, a.endsWith("llo"));
63 REPORTER_ASSERT(reporter, a.endsWith('o'));
64 REPORTER_ASSERT(reporter, !a.endsWith("ll" ));
65 REPORTER_ASSERT(reporter, !a.endsWith('l'));
66 REPORTER_ASSERT(reporter, a.endsWith(""));
67 REPORTER_ASSERT(reporter, a.contains("he"));
68 REPORTER_ASSERT(reporter, a.contains("ll"));
69 REPORTER_ASSERT(reporter, a.contains("lo"));
70 REPORTER_ASSERT(reporter, a.contains("hello"));
71 REPORTER_ASSERT(reporter, !a.contains("hellohello"));
72 REPORTER_ASSERT(reporter, a.contains(""));
73 REPORTER_ASSERT(reporter, a.contains('e'));
74 REPORTER_ASSERT(reporter, !a.contains('z'));
80 REPORTER_ASSERT(reporter, a == e && a == f && a == g);
84 REPORTER_ASSERT(reporter, a != b && a != c && b == c);
91 REPORTER_ASSERT(reporter, a.equals("hello world") && a == e && a == f);
95 REPORTER_ASSERT(reporter, a.isEmpty() && b.isEmpty() && a == b);
104 REPORTER_ASSERT(reporter, a.equals("2147483647"));
107 REPORTER_ASSERT(reporter, a.equals("-2147483647"));
110 REPORTER_ASSERT(reporter, a.equals("-2147483648"));
114 REPORTER_ASSERT(reporter, a.equals("2147483647"));
117 REPORTER_ASSERT(reporter, a.equals("2147483649"));
120 REPORTER_ASSERT(reporter, a.equals("4294967295"));
124 REPORTER_ASSERT(reporter, a.equals("9223372036854775807"));
127 REPORTER_ASSERT(reporter, a.equals("-9223372036854775807"));
130 REPORTER_ASSERT(reporter, a.equals("-9223372036854775808"));
133 REPORTER_ASSERT(reporter, a.equals("000000016777216"));
136 REPORTER_ASSERT(reporter, a.equals("-000000016777216"));
140 REPORTER_ASSERT(reporter, a.equals("9223372036854775807"));
143 REPORTER_ASSERT(reporter, a.equals("9223372036854775809"));
146 REPORTER_ASSERT(reporter, a.equals("18446744073709551615"));
149 REPORTER_ASSERT(reporter, a.equals("000000016777216"));
170 REPORTER_ASSERT(reporter, a.size() <= SkStrAppendScalar_MaxSize);
176 REPORTER_ASSERT(reporter, SkStringPrintf("%i", 0).equals("0"));
180 REPORTER_ASSERT(reporter, buffer[18] == 'a');
181 REPORTER_ASSERT(reporter, buffer[19] == 'a');
182 REPORTER_ASSERT(reporter, buffer[20] == 'a');
184 REPORTER_ASSERT(reporter, buffer[18] == ' ');
185 REPORTER_ASSERT(reporter, buffer[19] == 0);
186 REPORTER_ASSERT(reporter, buffer[20] == 'a');
194 REPORTER_ASSERT(r, results.count() == 6);
195 REPORTER_ASSERT(r, results[0].equals("a"));
196 REPORTER_ASSERT(r, results[1].equals("b"));
197 REPORTER_ASSERT(r, results[2].equals("c"));
198 REPORTER_ASSERT(r, results[3].equals("dee"));
199 REPORTER_ASSERT(r, results[4].equals("f"));
200 REPORTER_ASSERT(r, results[5].equals("g"));
204 REPORTER_ASSERT(r, results.count() == 0);
208 REPORTER_ASSERT(r, results.count() == 0);
212 REPORTER_ASSERT(r, results.count() == 1);
213 REPORTER_ASSERT(r, results[0].equals("a"));
218 REPORTER_ASSERT(r, results.count() == 13);
219 REPORTER_ASSERT(r, results[0].equals("a"));
220 REPORTER_ASSERT(r, results[1].equals(""));
221 REPORTER_ASSERT(r, results[2].equals("b"));
222 REPORTER_ASSERT(r, results[3].equals("c"));
223 REPORTER_ASSERT(r, results[4].equals("dee"));
224 REPORTER_ASSERT(r, results[5].equals(""));
225 REPORTER_ASSERT(r, results[6].equals("f"));
226 REPORTER_ASSERT(r, results[7].equals(""));
227 REPORTER_ASSERT(r, results[8].equals(""));
228 REPORTER_ASSERT(r, results[9].equals(""));
229 REPORTER_ASSERT(r, results[10].equals(""));
230 REPORTER_ASSERT(r, results[11].equals("g"));
231 REPORTER_ASSERT(r, results[12].equals(""));
235 REPORTER_ASSERT(r, results.count() == 2);
236 REPORTER_ASSERT(r, results[0].equals(""));
237 REPORTER_ASSERT(r, results[1].equals(""));
241 REPORTER_ASSERT(r, results.count() == 0);
245 REPORTER_ASSERT(r, results.count() == 1);
246 REPORTER_ASSERT(r, results[0].equals("a"));
250 REPORTER_ASSERT(r, results.count() == 3);
251 REPORTER_ASSERT(r, results[0].equals(""));
252 REPORTER_ASSERT(r, results[1].equals(""));
253 REPORTER_ASSERT(r, results[2].equals(""));
257 REPORTER_ASSERT(r, results.count() == 4);
258 REPORTER_ASSERT(r, results[0].equals(""));
259 REPORTER_ASSERT(r, results[1].equals("a"));
260 REPORTER_ASSERT(r, results[2].equals("b"));
261 REPORTER_ASSERT(r, results[3].equals(""));