Lines Matching refs:Finder
93 internal::ASTMatchFinder *Finder, in MatchDescendantVisitor() argument
97 : Matcher(Matcher), Finder(Finder), Builder(Builder), Bind(Bind), in MatchDescendantVisitor()
195 if (Matcher->matches(DynTypedNode::create(Node), Finder, in match()
206 internal::ASTMatchFinder *const Finder; member in clang::ast_matchers::MatchDescendantVisitor
225 MatchDescendantVisitor Visitor(&DTM, Finder, Builder, ASTMatchFinder::BK_All, in AST_MATCHER_P()
234 MatchDescendantVisitor Visitor(&DTM, Finder, Builder, ASTMatchFinder::BK_All, in AST_MATCHER_P()
251 return innerMatcher.matches(*Node.getSubExpr(), Finder, Builder); in AST_MATCHER_P()
360 auto HaveEqualConstantValues = [&Finder](const Expr *E0, const Expr *E1) { in AST_MATCHER()
361 if (auto E0CV = E0->getIntegerConstantExpr(Finder->getASTContext())) in AST_MATCHER()
362 if (auto E1CV = E1->getIntegerConstantExpr(Finder->getASTContext())) { in AST_MATCHER()
375 Arg1->getIntegerConstantExpr(Finder->getASTContext()); in AST_MATCHER()
429 const auto *CATy = Finder->getASTContext().getAsConstantArrayType( in AST_MATCHER()