Searched refs:rhs_ (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc258 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
261 *os << "is greater than " << rhs_; local
266 const int diff = lhs - rhs_;
268 *listener << "which is " << diff << " more than " << rhs_; local
270 *listener << "which is the same as " << rhs_; local
272 *listener << "which is " << -diff << " less than " << rhs_;
275 return lhs > rhs_;
279 int rhs_; member in class:__anon17::GreaterThanMatcher
H A Dgmock-matchers_test.cc164 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
167 *os << "is > " << rhs_; local
172 const int diff = lhs - rhs_;
174 *listener << "which is " << diff << " more than " << rhs_; local
176 *listener << "which is the same as " << rhs_; local
178 *listener << "which is " << -diff << " less than " << rhs_;
181 return lhs > rhs_;
185 int rhs_; member in class:testing::gmock_matchers_test::GreaterThanMatcher
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h895 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {}
898 return MakeMatcher(new Impl<Lhs>(rhs_));
905 explicit Impl(const Rhs& rhs) : rhs_(rhs) {}
908 return Op()(lhs, rhs_);
912 UniversalPrint(rhs_, os);
916 UniversalPrint(rhs_, os);
919 Rhs rhs_; member in class:testing::internal::ComparisonBase::Impl
922 Rhs rhs_; member in class:testing::internal::ComparisonBase
2702 : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) {
2711 return MakeMatcher(new Impl<LhsContainer>(tuple_matcher_, rhs_));
2786 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher::Impl
2793 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher
[all...]

Completed in 46 milliseconds