Lines Matching refs:MaxDepth
97 BoundNodesTreeBuilder *Builder, int MaxDepth, in MatchChildASTVisitor() argument
101 MaxDepth(MaxDepth), IgnoreImplicitChildren(IgnoreImplicitChildren), in MatchChildASTVisitor()
175 if (CurrentDepth == 0 || (CurrentDepth <= MaxDepth && MaxDepth < INT_MAX)) in TraverseStmt()
329 if (CurrentDepth == 0 || CurrentDepth > MaxDepth) { in match()
368 const int MaxDepth; member in clang::ast_matchers::internal::__anon637901cc0111::MatchChildASTVisitor
469 BoundNodesTreeBuilder *Builder, int MaxDepth, in memoizedMatchesRecursively() argument
473 return matchesRecursively(Node, Matcher, Builder, MaxDepth, Bind); in memoizedMatchesRecursively()
482 Key.Type = MaxDepth == 1 ? MatchType::Child : MatchType::Descendants; in memoizedMatchesRecursively()
492 matchesRecursively(Node, Matcher, &Result.Nodes, MaxDepth, Bind); in memoizedMatchesRecursively()
504 BoundNodesTreeBuilder *Builder, int MaxDepth, in matchesRecursively() argument
519 MatchChildASTVisitor Visitor(&Matcher, this, Builder, MaxDepth, in matchesRecursively()