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

  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 223 VariantMatcher::PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers) {
  /external/google-breakpad/src/testing/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...]

Completed in 95 milliseconds