Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
H A DASTSelection.h95 class CodeRangeASTSelection {
97 CodeRangeASTSelection(CodeRangeASTSelection &&) = default;
98 CodeRangeASTSelection &operator=(CodeRangeASTSelection &&) = default;
133 static Optional<CodeRangeASTSelection>
137 CodeRangeASTSelection(SelectedASTNode::ReferenceType SelectedNode, in CodeRangeASTSelection() function
H A DRefactoringActionRuleRequirements.h76 Expected<CodeRangeASTSelection>
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/Extract/
H A DExtract.h28 CodeRangeASTSelection Code,
34 ExtractFunction(CodeRangeASTSelection Code, Optional<std::string> DeclName) in ExtractFunction()
41 CodeRangeASTSelection Code;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
H A DASTSelectionRequirements.cpp31 Expected<CodeRangeASTSelection> CodeRangeASTSelectionRequirement::evaluate( in evaluate()
40 Optional<CodeRangeASTSelection> CodeRange = CodeRangeASTSelection::create( in evaluate()
H A DASTSelection.cpp378 Optional<CodeRangeASTSelection>
379 CodeRangeASTSelection::create(SourceRange SelectionRange, in create()
397 return CodeRangeASTSelection(Selected.Node, Selected.Parents, in create()
409 return CodeRangeASTSelection(Selected.Node, Selected.Parents, in create()
418 bool CodeRangeASTSelection::isInFunctionLikeBodyOfCode() const { in isInFunctionLikeBodyOfCode()
440 const Decl *CodeRangeASTSelection::getFunctionLikeNearestParent() const { in getFunctionLikeNearestParent()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
H A DExtract.cpp70 CodeRangeASTSelection Code, in initiate()