Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp184 SourceRange SelectionRange) { in findSelectedASTNodes() argument
185 assert(SelectionRange.isValid() && in findSelectedASTNodes()
186 SourceLocation::isPairOfFileLocations(SelectionRange.getBegin(), in findSelectedASTNodes()
187 SelectionRange.getEnd()) && in findSelectedASTNodes()
190 Context.getSourceManager().getFileID(SelectionRange.getBegin()); in findSelectedASTNodes()
191 assert(Context.getSourceManager().getFileID(SelectionRange.getEnd()) == in findSelectedASTNodes()
195 ASTSelectionFinder Visitor(SelectionRange, TargetFile, Context); in findSelectedASTNodes()
380 CodeRangeASTSelection::create(SourceRange SelectionRange, in create() argument
383 if (SelectionRange.getBegin() == SelectionRange.getEnd()) in create()
/openbsd/gnu/llvm/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.h72 SourceRange SelectionRange);
135 create(SourceRange SelectionRange, const SelectedASTNode &ASTSelection);
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/clang/include/clang/Tooling/Refactoring/Rename/
H A DRenamingAction.h51 SourceRange SelectionRange,