HomeSort by relevance Sort by last modified time
    Searched refs:PolymorphicMatcher (Results 1 - 2 of 2) sorted by null

  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h 304 // The PolymorphicMatcher class template makes it easy to implement a
317 class PolymorphicMatcher {
319 explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {}
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);
    [all...]
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc 109 using testing::PolymorphicMatcher;
389 // PolymorphicMatcher<T> where T is the argument's type.
390 PolymorphicMatcher<ReferencesBarOrIsZeroImpl> ReferencesBarOrIsZero() {
433 PolymorphicMatcher<PolymorphicIsEvenImpl> PolymorphicIsEven() {
    [all...]

Completed in 37 milliseconds