• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/

Lines Matching refs:Finder

52 bool NotUnaryOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
56 bool AllOfVariadicOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
60 bool EachOfVariadicOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
64 bool AnyOfVariadicOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
69 ASTMatchFinder *Finder,
75 ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) {
83 [Finder, Builder, &BaseSpecMatcher](const CXXBaseSpecifier *BaseSpec,
86 if (BaseSpecMatcher.matches(*BaseSpec, Finder, Builder)) {
108 const DynTypedNode &DynNode, ASTMatchFinder *Finder,
117 bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
119 return Func(DynNode, Finder, Builder, InnerMatchers);
132 bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
134 bool Result = InnerMatcher->dynMatches(DynNode, Finder, Builder);
176 bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
178 return this->InnerMatcher->dynMatches(DynNode, Finder, Builder);
282 ASTMatchFinder *Finder,
284 TraversalKindScope RAII(Finder->getASTContext(),
288 Finder->getASTContext().getParentMapContext().traverseIgnored(DynNode);
291 Implementation->dynMatches(N, Finder, Builder)) {
302 ASTMatchFinder *Finder,
304 TraversalKindScope raii(Finder->getASTContext(),
308 Finder->getASTContext().getParentMapContext().traverseIgnored(DynNode);
311 if (Implementation->dynMatches(N, Finder, Builder)) {
344 bool NotUnaryOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
361 return !InnerMatchers[0].matches(DynNode, Finder, &Discard);
364 bool AllOfVariadicOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
371 return InnerMatcher.matchesNoKindCheck(DynNode, Finder, Builder);
375 bool EachOfVariadicOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
382 if (InnerMatcher.matches(DynNode, Finder, &BuilderInner)) {
391 bool AnyOfVariadicOperator(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
396 if (InnerMatcher.matches(DynNode, Finder, &Result)) {
405 ASTMatchFinder *Finder,
412 if (InnerMatchers[0].matches(DynNode, Finder, &Result))