Home
last modified time | relevance | path

Searched refs:ASTSelection (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp341 const SelectedASTNode &ASTSelection, in findDeepestWithKind() argument
345 if (ASTSelection.Node.get<DeclStmt>()) { in findDeepestWithKind()
348 for (const auto &Child : ASTSelection.Children) { in findDeepestWithKind()
351 std::cref(ASTSelection), {ParentStack.begin(), ParentStack.end()}}); 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() argument
375 findDeepestWithKind(ASTSelection, MatchingNodes, Kind, ParentStack); in findDeepestWithKind()
[all …]
H A DASTSelectionRequirements.cpp34 Expected<SelectedASTNode> ASTSelection = in evaluate() local
36 if (!ASTSelection) in evaluate()
37 return ASTSelection.takeError(); in evaluate()
39 std::make_unique<SelectedASTNode>(std::move(*ASTSelection)); in evaluate()
H A DCMakeLists.txt4 ASTSelection.cpp
/netbsd-src/external/apache2/llvm/lib/libclangToolingRefactoring/
H A DMakefile9 SRCS+= ASTSelection.cpp \
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/clang/lib/Tooling/Refactoring/
H A DBUILD.gn17 "ASTSelection.cpp",
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
H A DASTSelection.h134 create(SourceRange SelectionRange, const SelectedASTNode &ASTSelection);