Home | History | Annotate | Download | only in gmock

Lines Matching refs:RefMatcher

829 // The RefMatcher template class implements Ref(variable).  It can
839 class RefMatcher;
842 class RefMatcher<T&> {
849 // RefMatcher() takes a T& instead of const T&, as we want the
852 explicit RefMatcher(T& x) : object_(x) {} // NOLINT
896 GTEST_DISALLOW_ASSIGN_(RefMatcher);
2772 inline internal::RefMatcher<T&> Ref(T& x) { // NOLINT
2773 return internal::RefMatcher<T&>(x);