Lines Matching refs:REPORTER_ASSERT

60     REPORTER_ASSERT(r, imageDecodeSuccess);  in test_gif_data_no_colormap()
61 REPORTER_ASSERT(r, bm.width() == 1); in test_gif_data_no_colormap()
62 REPORTER_ASSERT(r, bm.height() == 1); in test_gif_data_no_colormap()
63 REPORTER_ASSERT(r, !(bm.empty())); in test_gif_data_no_colormap()
65 REPORTER_ASSERT(r, bm.getColor(0, 0) == 0x00000000); in test_gif_data_no_colormap()
72 REPORTER_ASSERT(r, imageDecodeSuccess); in test_gif_data()
73 REPORTER_ASSERT(r, bm.width() == 3); in test_gif_data()
74 REPORTER_ASSERT(r, bm.height() == 3); in test_gif_data()
75 REPORTER_ASSERT(r, !(bm.empty())); in test_gif_data()
77 REPORTER_ASSERT(r, bm.getColor(0, 0) == 0xffff0000); in test_gif_data()
78 REPORTER_ASSERT(r, bm.getColor(1, 0) == 0xffffff00); in test_gif_data()
79 REPORTER_ASSERT(r, bm.getColor(2, 0) == 0xff00ffff); in test_gif_data()
80 REPORTER_ASSERT(r, bm.getColor(0, 1) == 0xff808080); in test_gif_data()
81 REPORTER_ASSERT(r, bm.getColor(1, 1) == 0xff000000); in test_gif_data()
82 REPORTER_ASSERT(r, bm.getColor(2, 1) == 0xff00ff00); in test_gif_data()
83 REPORTER_ASSERT(r, bm.getColor(0, 2) == 0xffffffff); in test_gif_data()
84 REPORTER_ASSERT(r, bm.getColor(1, 2) == 0xffff00ff); in test_gif_data()
85 REPORTER_ASSERT(r, bm.getColor(2, 2) == 0xff0000ff); in test_gif_data()
94 REPORTER_ASSERT(r, imageDecodeSuccess); in test_interlaced_gif_data()
95 REPORTER_ASSERT(r, bm.width() == 9); in test_interlaced_gif_data()
96 REPORTER_ASSERT(r, bm.height() == 9); in test_interlaced_gif_data()
97 REPORTER_ASSERT(r, !(bm.empty())); in test_interlaced_gif_data()
99 REPORTER_ASSERT(r, bm.getColor(0, 0) == 0xffff0000); in test_interlaced_gif_data()
100 REPORTER_ASSERT(r, bm.getColor(1, 0) == 0xffffff00); in test_interlaced_gif_data()
101 REPORTER_ASSERT(r, bm.getColor(2, 0) == 0xff00ffff); in test_interlaced_gif_data()
103 REPORTER_ASSERT(r, bm.getColor(0, 2) == 0xffffffff); in test_interlaced_gif_data()
104 REPORTER_ASSERT(r, bm.getColor(1, 2) == 0xffff00ff); in test_interlaced_gif_data()
105 REPORTER_ASSERT(r, bm.getColor(2, 2) == 0xff0000ff); in test_interlaced_gif_data()
107 REPORTER_ASSERT(r, bm.getColor(0, 4) == 0xff808080); in test_interlaced_gif_data()
108 REPORTER_ASSERT(r, bm.getColor(1, 4) == 0xff000000); in test_interlaced_gif_data()
109 REPORTER_ASSERT(r, bm.getColor(2, 4) == 0xff00ff00); in test_interlaced_gif_data()
111 REPORTER_ASSERT(r, bm.getColor(0, 6) == 0xffff0000); in test_interlaced_gif_data()
112 REPORTER_ASSERT(r, bm.getColor(1, 6) == 0xffffff00); in test_interlaced_gif_data()
113 REPORTER_ASSERT(r, bm.getColor(2, 6) == 0xff00ffff); in test_interlaced_gif_data()
115 REPORTER_ASSERT(r, bm.getColor(0, 8) == 0xffffffff); in test_interlaced_gif_data()
116 REPORTER_ASSERT(r, bm.getColor(1, 8) == 0xffff00ff); in test_interlaced_gif_data()
117 REPORTER_ASSERT(r, bm.getColor(2, 8) == 0xff0000ff); in test_interlaced_gif_data()
127 REPORTER_ASSERT(r, imageDecodeSuccess); in test_gif_data_short()
128 REPORTER_ASSERT(r, bm.width() == 3); in test_gif_data_short()
129 REPORTER_ASSERT(r, bm.height() == 3); in test_gif_data_short()
130 REPORTER_ASSERT(r, !(bm.empty())); in test_gif_data_short()
132 REPORTER_ASSERT(r, bm.getColor(0, 0) == 0xffff0000); in test_gif_data_short()
133 REPORTER_ASSERT(r, bm.getColor(1, 0) == 0xffffff00); in test_gif_data_short()
134 REPORTER_ASSERT(r, bm.getColor(2, 0) == 0xff00ffff); in test_gif_data_short()
135 REPORTER_ASSERT(r, bm.getColor(0, 1) == 0xff808080); in test_gif_data_short()
136 REPORTER_ASSERT(r, bm.getColor(1, 1) == 0xff000000); in test_gif_data_short()
137 REPORTER_ASSERT(r, bm.getColor(2, 1) == 0xff00ff00); in test_gif_data_short()
207 REPORTER_ASSERT(r, fileStream.isValid()); in DEF_TEST()
213 REPORTER_ASSERT(r, decoder); in DEF_TEST()
221 REPORTER_ASSERT(r, result == SkImageDecoder::kSuccess); in DEF_TEST()