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

/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc4036 class NotCopyable { class in namespace:testing::gmock_matchers_test
4038 explicit NotCopyable(int a_value) : value_(a_value) {} function in class:testing::gmock_matchers_test::NotCopyable
4042 bool operator==(const NotCopyable& rhs) const {
4046 bool operator>=(const NotCopyable& rhs) const {
4052 GTEST_DISALLOW_COPY_AND_ASSIGN_(NotCopyable);
4056 const NotCopyable const_value1(1);
4057 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1));
4059 const NotCopyable n1(1), n2(2);
4065 NotCopyable value2(2);
4066 const Matcher<NotCopyable
[all...]

Completed in 25 milliseconds