Searched defs:PolymorphicMatcher (Results 1 - 1 of 1) sorted by relevance

/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h304 // The PolymorphicMatcher class template makes it easy to implement a
317 class PolymorphicMatcher { class in namespace:testing
319 explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} function in class:testing::PolymorphicMatcher
360 GTEST_DISALLOW_ASSIGN_(PolymorphicMatcher);
376 // easier to use than the PolymorphicMatcher<Impl> constructor as it
381 // PolymorphicMatcher<TypeOfFoo>(foo);
383 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) {
384 return PolymorphicMatcher<Impl>(impl);
2637 inline PolymorphicMatcher<internal::IsNullMatcher > IsNull() {
2644 inline PolymorphicMatcher<interna
[all...]

Completed in 1293 milliseconds