Lines Matching refs:reporter
152 DEF_TEST(Gif, reporter) {
154 test_gif_data(reporter, static_cast<void *>(gGIFData), sizeof(gGIFData));
155 test_interlaced_gif_data(reporter, static_cast<void *>(gInterlacedGIF),
162 test_gif_data(reporter, static_cast<void *>(badData), sizeof(gGIFData));
167 test_gif_data(reporter, static_cast<void *>(badData), sizeof(gGIFData));
172 test_gif_data_dims(reporter, static_cast<void *>(badData), sizeof(gGIFData), 4, 3);
176 test_gif_data_dims(reporter, static_cast<void *>(badData), sizeof(gGIFData), 3, 4);
181 test_gif_data_dims(reporter, static_cast<void *>(badData), sizeof(gGIFData), 3 + 0xFFFF, 3);
186 test_gif_data_dims(reporter, static_cast<void *>(badData), sizeof(gGIFData), 3, 3 + 0xFFFF);
188 test_gif_data_no_colormap(reporter, static_cast<void *>(gGIFDataNoColormap),
208 test_gif_data_no_colormap(reporter, static_cast<void *>(gGIFDataNoColormap), 31);
214 REPORTER_ASSERT(reporter, codec);
219 REPORTER_ASSERT(reporter, SkCodec::kSuccess == codec->startIncrementalDecode(
221 REPORTER_ASSERT(reporter, SkCodec::kSuccess == codec->incrementalDecode());
222 REPORTER_ASSERT(reporter, bm.width() == 1);
223 REPORTER_ASSERT(reporter, bm.height() == 1);
224 REPORTER_ASSERT(reporter, !(bm.empty()));
226 REPORTER_ASSERT(reporter, bm.getColor(0, 0) == 0x00000000);
233 test_gif_data_short(reporter, static_cast<void *>(gGIFData), 80);
236 test_interlaced_gif_data(reporter, static_cast<void *>(gInterlacedGIF),