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

/external/chromium/testing/gmock/test/
H A Dgmock-matchers_test.cc3467 class NotCopyable { class in namespace:testing::gmock_matchers_test
3469 explicit NotCopyable(int a_value) : value_(a_value) {} function in class:testing::gmock_matchers_test::NotCopyable
3473 bool operator==(const NotCopyable& rhs) const {
3477 bool operator>=(const NotCopyable& rhs) const {
3483 GTEST_DISALLOW_COPY_AND_ASSIGN_(NotCopyable);
3487 const NotCopyable const_value1(1);
3488 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1));
3490 const NotCopyable n1(1), n2(2);
3496 NotCopyable value2(2);
3497 const Matcher<NotCopyable
[all...]

Completed in 43 milliseconds