Searched refs:ASTSelection (Results 1 – 3 of 3) sorted by relevance
34 Expected<SelectedASTNode> ASTSelection = in evaluate() local36 if (!ASTSelection) in evaluate()37 return ASTSelection.takeError(); in evaluate()39 std::make_unique<SelectedASTNode>(std::move(*ASTSelection)); in evaluate()
341 const SelectedASTNode &ASTSelection, in findDeepestWithKind() argument345 if (ASTSelection.Node.get<DeclStmt>()) { in findDeepestWithKind()348 for (const auto &Child : ASTSelection.Children) { in findDeepestWithKind()356 if (!hasAnyDirectChildrenWithKind(ASTSelection, Kind)) { in findDeepestWithKind()359 std::cref(ASTSelection), {ParentStack.begin(), ParentStack.end()}}); in findDeepestWithKind()364 ParentStack.push_back(std::cref(ASTSelection)); in findDeepestWithKind()365 for (const auto &Child : ASTSelection.Children) in findDeepestWithKind()371 const SelectedASTNode &ASTSelection, in findDeepestWithKind() argument375 findDeepestWithKind(ASTSelection, MatchingNodes, Kind, ParentStack); in findDeepestWithKind()380 const SelectedASTNode &ASTSelection) { in create() argument[all …]
134 create(SourceRange SelectionRange, const SelectedASTNode &ASTSelection);