Home | History | Annotate | Download | only in gmock

Lines Matching refs:RefMatcher

957 // The RefMatcher template class implements Ref(variable).  It can
967 class RefMatcher;
970 class RefMatcher<T&> {
977 // RefMatcher() takes a T& instead of const T&, as we want the
980 explicit RefMatcher(T& x) : object_(x) {} // NOLINT
1024 GTEST_DISALLOW_ASSIGN_(RefMatcher);
3492 inline internal::RefMatcher<T&> Ref(T& x) { // NOLINT
3493 return internal::RefMatcher<T&>(x);