Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/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.h77 Expected<CodeRangeASTSelection>
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Extract/
H A DExtract.h29 CodeRangeASTSelection Code,
35 ExtractFunction(CodeRangeASTSelection Code, Optional<std::string> DeclName) in ExtractFunction()
42 CodeRangeASTSelection Code;
/freebsd-12.1/contrib/llvm/tools/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.cpp380 Optional<CodeRangeASTSelection>
381 CodeRangeASTSelection::create(SourceRange SelectionRange, in create()
399 return CodeRangeASTSelection(Selected.Node, Selected.Parents, in create()
411 return CodeRangeASTSelection(Selected.Node, Selected.Parents, in create()
420 bool CodeRangeASTSelection::isInFunctionLikeBodyOfCode() const { in isInFunctionLikeBodyOfCode()
442 const Decl *CodeRangeASTSelection::getFunctionLikeNearestParent() const { in getFunctionLikeNearestParent()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/
H A DExtract.cpp71 CodeRangeASTSelection Code, in initiate()