Home | History | Annotate | Download | only in test

Lines Matching defs:diff

231     const int diff = get<0>(value) - get<1>(value);
232 if (diff > 0) {
233 *listener << "where the first value is " << diff
236 return diff < 0;
264 const int diff = lhs - rhs_;
265 if (diff > 0) {
266 *listener << "which is " << diff << " more than " << rhs_;
267 } else if (diff == 0) {
270 *listener << "which is " << -diff << " less than " << rhs_;
632 *result_listener->stream() << "diff == " << (x + y - arg);
658 EXPECT_EQ("diff == -1", Explain(m2, 4));