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

/external/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h642 /// BindableMatcher provides a \a bind() method that allows binding the
645 class BindableMatcher : public Matcher<T> { class in namespace:clang::ast_matchers::internal
647 BindableMatcher(MatcherInterface<T> *Implementation) function in class:clang::ast_matchers::internal::BindableMatcher
785 /// Returns BindableMatcher, as matchers that use dyn_cast have
789 BindableMatcher<T> makeDynCastAllOfComposite(
793 return BindableMatcher<T>(new DynCastMatcher<T, InnerT>(InnerMatcher));
801 return BindableMatcher<T>(new DynCastMatcher<T, InnerT>(InnerMatcher));
977 BindableMatcher<SourceT>, Matcher<TargetT>,

Completed in 223 milliseconds