Lines Matching refs:NotCopyable
4677 class NotCopyable { class
4679 explicit NotCopyable(int a_value) : value_(a_value) {} in NotCopyable() function in testing::gmock_matchers_test::__anon67385ff30111::NotCopyable
4683 bool operator==(const NotCopyable& rhs) const { in operator ==()
4687 bool operator>=(const NotCopyable& rhs) const { in operator >=()
4693 GTEST_DISALLOW_COPY_AND_ASSIGN_(NotCopyable);
4697 const NotCopyable const_value1(1); in TEST()
4698 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()
4700 const NotCopyable n1(1), n2(2); in TEST()
4706 NotCopyable value2(2); in TEST()
4707 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST()
4709 NotCopyable n1(1), n2(2); in TEST()