Searched refs:NotCopyable (Results 1 – 1 of 1) sorted by relevance
98 class NotCopyable { class100 explicit NotCopyable(int a_value) : value_(a_value) {} in NotCopyable() function in testing::gmock_matchers_test::__anonebb175b30111::NotCopyable104 bool operator==(const NotCopyable& rhs) const { in operator ==()108 bool operator>=(const NotCopyable& rhs) const { in operator >=()115 NotCopyable(const NotCopyable&) = delete;116 NotCopyable& operator=(const NotCopyable&) = delete;120 const NotCopyable const_value1(1); in TEST()121 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()123 const NotCopyable n1(1), n2(2); in TEST()129 NotCopyable value2(2); in TEST()[all …]