Home
last modified time | relevance | path

Searched refs:SelectionRange (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp183 SourceRange SelectionRange) { in findSelectedASTNodes() argument
184 assert(SelectionRange.isValid() && in findSelectedASTNodes()
185 SourceLocation::isPairOfFileLocations(SelectionRange.getBegin(), in findSelectedASTNodes()
186 SelectionRange.getEnd()) && in findSelectedASTNodes()
189 Context.getSourceManager().getFileID(SelectionRange.getBegin()); in findSelectedASTNodes()
190 assert(Context.getSourceManager().getFileID(SelectionRange.getEnd()) == in findSelectedASTNodes()
194 ASTSelectionFinder Visitor(SelectionRange, TargetFile, Context); in findSelectedASTNodes()
379 CodeRangeASTSelection::create(SourceRange SelectionRange, in create() argument
382 if (SelectionRange.getBegin() == SelectionRange.getEnd()) in create()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
H A DRefactoringRuleContext.h41 SourceRange getSelectionRange() const { return SelectionRange; } in getSelectionRange()
43 void setSelectionRange(SourceRange R) { SelectionRange = R; } in setSelectionRange()
75 SourceRange SelectionRange; variable
H A DASTSelection.h71 SourceRange SelectionRange);
134 create(SourceRange SelectionRange, const SelectedASTNode &ASTSelection);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
H A DRenamingAction.cpp67 SourceRange SelectionRange, std::string NewName) { in initiate() argument
69 getNamedDeclAt(Context.getASTContext(), SelectionRange.getBegin()); in initiate()
72 SelectionRange.getBegin(), diag::err_refactor_selection_no_symbol); in initiate()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/Rename/
H A DRenamingAction.h52 SourceRange SelectionRange,