Home | History | Annotate | Download | only in test

Lines Matching refs:diff

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