Home | History | Annotate | Download | only in test

Lines Matching refs:rhs_

256   explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
259 *os << "is greater than " << rhs_;
264 const int diff = lhs - rhs_;
266 *listener << "which is " << diff << " more than " << rhs_;
268 *listener << "which is the same as " << rhs_;
270 *listener << "which is " << -diff << " less than " << rhs_;
273 return lhs > rhs_;
277 int rhs_;