Lines Matching refs:MaxDepth
98 BoundNodesTreeBuilder *Builder, int MaxDepth, in MatchChildASTVisitor() argument
102 MaxDepth(MaxDepth), IgnoreImplicitChildren(IgnoreImplicitChildren), in MatchChildASTVisitor()
178 if (CurrentDepth == 0 || (CurrentDepth <= MaxDepth && MaxDepth < INT_MAX)) in TraverseStmt()
371 if (CurrentDepth == 0 || CurrentDepth > MaxDepth) { in match()
410 const int MaxDepth; member in clang::ast_matchers::internal::__anonab4d286c0111::MatchChildASTVisitor
596 BoundNodesTreeBuilder *Builder, int MaxDepth, in memoizedMatchesRecursively() argument
600 return matchesRecursively(Node, Matcher, Builder, MaxDepth, Bind); in memoizedMatchesRecursively()
609 Key.Type = MaxDepth == 1 ? MatchType::Child : MatchType::Descendants; in memoizedMatchesRecursively()
619 matchesRecursively(Node, Matcher, &Result.Nodes, MaxDepth, Bind); in memoizedMatchesRecursively()
631 BoundNodesTreeBuilder *Builder, int MaxDepth, in matchesRecursively() argument
644 MatchChildASTVisitor Visitor(&Matcher, this, Builder, MaxDepth, in matchesRecursively()