Lines Matching refs:REPORTER_ASSERT
108 REPORTER_ASSERT(reporter, blob->bounds().isEmpty());
115 REPORTER_ASSERT(reporter, blob->bounds() == r1);
122 REPORTER_ASSERT(reporter, blob->bounds() == r1);
129 REPORTER_ASSERT(reporter, blob->bounds() == r1);
142 REPORTER_ASSERT(reporter, blob->bounds() == SkRect::MakeXYWH(0, 5, 65, 65));
148 REPORTER_ASSERT(reporter, blob->bounds().isEmpty());
172 REPORTER_ASSERT(reporter, blob->bounds().isEmpty());
205 REPORTER_ASSERT(reporter, defaultPaint.getTextSize() != font.getTextSize());
206 REPORTER_ASSERT(reporter, defaultPaint.getTextScaleX() != font.getTextScaleX());
207 REPORTER_ASSERT(reporter, defaultPaint.getTypeface() != font.getTypeface());
208 REPORTER_ASSERT(reporter, defaultPaint.getTextSkewX() != font.getTextSkewX());
209 REPORTER_ASSERT(reporter, defaultPaint.getTextAlign() != font.getTextAlign());
210 REPORTER_ASSERT(reporter, defaultPaint.getHinting() != font.getHinting());
211 REPORTER_ASSERT(reporter, defaultPaint.isAntiAlias() != font.isAntiAlias());
212 REPORTER_ASSERT(reporter, defaultPaint.isUnderlineText() != font.isUnderlineText());
213 REPORTER_ASSERT(reporter, defaultPaint.isStrikeThruText() != font.isStrikeThruText());
214 REPORTER_ASSERT(reporter, defaultPaint.isFakeBoldText() != font.isFakeBoldText());
215 REPORTER_ASSERT(reporter, defaultPaint.isLinearText() != font.isLinearText());
216 REPORTER_ASSERT(reporter, defaultPaint.isSubpixelText() != font.isSubpixelText());
217 REPORTER_ASSERT(reporter, defaultPaint.isDevKernText() != font.isDevKernText());
218 REPORTER_ASSERT(reporter, defaultPaint.isLCDRenderText() != font.isLCDRenderText());
219 REPORTER_ASSERT(reporter, defaultPaint.isEmbeddedBitmapText() != font.isEmbeddedBitmapText());
220 REPORTER_ASSERT(reporter, defaultPaint.isAutohinted() != font.isAutohinted());
221 REPORTER_ASSERT(reporter, defaultPaint.isVerticalText() != font.isVerticalText());
222 REPORTER_ASSERT(reporter, (defaultPaint.getFlags() & SkPaint::kGenA8FromLCD_Flag) !=
236 REPORTER_ASSERT(reporter, paint.getTextSize() == font.getTextSize());
237 REPORTER_ASSERT(reporter, paint.getTextScaleX() == font.getTextScaleX());
238 REPORTER_ASSERT(reporter, paint.getTypeface() == font.getTypeface());
239 REPORTER_ASSERT(reporter, paint.getTextSkewX() == font.getTextSkewX());
240 REPORTER_ASSERT(reporter, paint.getTextAlign() == font.getTextAlign());
241 REPORTER_ASSERT(reporter, paint.getHinting() == font.getHinting());
242 REPORTER_ASSERT(reporter, paint.isAntiAlias() == font.isAntiAlias());
243 REPORTER_ASSERT(reporter, paint.isUnderlineText() == font.isUnderlineText());
244 REPORTER_ASSERT(reporter, paint.isStrikeThruText() == font.isStrikeThruText());
245 REPORTER_ASSERT(reporter, paint.isFakeBoldText() == font.isFakeBoldText());
246 REPORTER_ASSERT(reporter, paint.isLinearText() == font.isLinearText());
247 REPORTER_ASSERT(reporter, paint.isSubpixelText() == font.isSubpixelText());
248 REPORTER_ASSERT(reporter, paint.isDevKernText() == font.isDevKernText());
249 REPORTER_ASSERT(reporter, paint.isLCDRenderText() == font.isLCDRenderText());
250 REPORTER_ASSERT(reporter, paint.isEmbeddedBitmapText() == font.isEmbeddedBitmapText());
251 REPORTER_ASSERT(reporter, paint.isAutohinted() == font.isAutohinted());
252 REPORTER_ASSERT(reporter, paint.isVerticalText() == font.isVerticalText());
253 REPORTER_ASSERT(reporter, (paint.getFlags() & SkPaint::kGenA8FromLCD_Flag) ==
287 REPORTER_ASSERT(reporter, !it.done());
288 REPORTER_ASSERT(reporter, out[i].pos == it.positioning());
289 REPORTER_ASSERT(reporter, out[i].count == it.glyphCount());
291 REPORTER_ASSERT(reporter, out[i].x == it.offset().x());
292 REPORTER_ASSERT(reporter, out[i].y == it.offset().y());
294 REPORTER_ASSERT(reporter, out[i].y == it.offset().y());
298 REPORTER_ASSERT(reporter, k % 128 == it.glyphs()[k]);
300 REPORTER_ASSERT(reporter, SkIntToScalar(k % 128) == it.pos()[k]);
302 REPORTER_ASSERT(reporter, SkIntToScalar(k % 128) == it.pos()[k * 2]);
303 REPORTER_ASSERT(reporter, -SkIntToScalar(k % 128) == it.pos()[k * 2 + 1]);
310 REPORTER_ASSERT(reporter, it.done());