Home | History | Annotate | Download | only in tests

Lines Matching refs:REPORTER_ASSERT

19     REPORTER_ASSERT(reporter, a.isZero() != a.nonZero());
21 REPORTER_ASSERT(reporter, !a.isZero() == !table.zero);
22 REPORTER_ASSERT(reporter, !a.isPos() == !table.pos);
23 REPORTER_ASSERT(reporter, !a.isNeg() == !table.neg);
24 REPORTER_ASSERT(reporter, a.getSign() == table.sign);
51 REPORTER_ASSERT(reporter, a == b);
52 REPORTER_ASSERT(reporter, a == c);
57 REPORTER_ASSERT(reporter, a == b);
58 REPORTER_ASSERT(reporter, a.is32() && a.get32() == 5 && !a.is64());
63 REPORTER_ASSERT(reporter, a == b);
64 REPORTER_ASSERT(reporter, a.is32() && a.get32() == -5 && !a.is64());
70 REPORTER_ASSERT(reporter, a != b && b != c && a != c);
71 REPORTER_ASSERT(reporter, !(a == b) && !(a == b) && !(a == b));
72 REPORTER_ASSERT(reporter, a < b && b > a && a <= b && b >= a);
73 REPORTER_ASSERT(reporter, c < a && a > c && c <= a && a >= c);
74 REPORTER_ASSERT(reporter, c < b && b > c && c <= b && b >= c);
87 REPORTER_ASSERT(reporter, a.get32() == aa && b.get32() == bb);
89 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
91 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
93 REPORTER_ASSERT(reporter, c.get32() == aa + bb);
95 REPORTER_ASSERT(reporter, c.get32() == aa - bb);
118 REPORTER_ASSERT(reporter, (a < b) == (aa < bb));
119 REPORTER_ASSERT(reporter, (a <= b) == (aa <= bb));
120 REPORTER_ASSERT(reporter, (a > b) == (aa > bb));
121 REPORTER_ASSERT(reporter, (a >= b) == (aa >= bb));
122 REPORTER_ASSERT(reporter, (a == b) == (aa == bb));
123 REPORTER_ASSERT(reporter, (a != b) == (aa != bb));
126 REPORTER_ASSERT(reporter, asLL(c) == aa + bb);
128 REPORTER_ASSERT(reporter, asLL(c) == aa - bb);
130 REPORTER_ASSERT(reporter, asLL(c) == bb - aa);
132 REPORTER_ASSERT(reporter, asLL(c) == -aa);
136 REPORTER_ASSERT(reporter, asLL(c) == (aa << bits));
138 REPORTER_ASSERT(reporter, asLL(c) == (aa >> bits));
146 REPORTER_ASSERT(reporter, asLL(c) == (tmp >> bits));
150 REPORTER_ASSERT(reporter, asLL(c) == tmp);
168 REPORTER_ASSERT(reporter, check == w);
175 REPORTER_ASSERT(reporter, SkAbs32(diff) <= 1);
197 REPORTER_ASSERT(reporter, SkAbs32(diff) <= 1);