Lines Matching refs:ASTSelection
343 const SelectedASTNode &ASTSelection, in findDeepestWithKind() argument
347 if (ASTSelection.Node.get<DeclStmt>()) { in findDeepestWithKind()
350 for (const auto &Child : ASTSelection.Children) { in findDeepestWithKind()
353 std::cref(ASTSelection), {ParentStack.begin(), ParentStack.end()}}); in findDeepestWithKind()
358 if (!hasAnyDirectChildrenWithKind(ASTSelection, Kind)) { in findDeepestWithKind()
361 std::cref(ASTSelection), {ParentStack.begin(), ParentStack.end()}}); in findDeepestWithKind()
366 ParentStack.push_back(std::cref(ASTSelection)); in findDeepestWithKind()
367 for (const auto &Child : ASTSelection.Children) in findDeepestWithKind()
373 const SelectedASTNode &ASTSelection, in findDeepestWithKind() argument
377 findDeepestWithKind(ASTSelection, MatchingNodes, Kind, ParentStack); in findDeepestWithKind()
382 const SelectedASTNode &ASTSelection) { in create() argument
387 findDeepestWithKind(ASTSelection, ContainSelection, in create()