Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Tooling/Refactoring/
DASTSelection.cpp148 if (SM.isPointWithin(SelectionBegin, Range.getBegin(), End)) in selectionKindFor()
152 bool HasStart = SM.isPointWithin(SelectionBegin, Range.getBegin(), End); in selectionKindFor()
153 bool HasEnd = SM.isPointWithin(SelectionEnd, Range.getBegin(), End); in selectionKindFor()
156 if (SM.isPointWithin(Range.getBegin(), SelectionBegin, SelectionEnd) && in selectionKindFor()
157 SM.isPointWithin(End, SelectionBegin, SelectionEnd)) in selectionKindFor()
/external/llvm-project/clang/lib/Tooling/Refactoring/Rename/
DUSRFinder.cpp51 !End.isFileID() || !isPointWithin(Start, End)) in visitSymbolOccurrence()
62 bool isPointWithin(const SourceLocation Start, const SourceLocation End) { in isPointWithin() function in clang::tooling::__anonf3c1ce710111::NamedDeclOccurrenceFindingVisitor
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/
DExtractVariable.cpp103 if (SM.isPointWithin(ReferencedDecl->getBeginLoc(), ScopeBegin, ScopeEnd) && in exprIsValidOutside()
104 SM.isPointWithin(ReferencedDecl->getEndLoc(), ScopeBegin, ScopeEnd)) in exprIsValidOutside()
/external/llvm-project/clang-tools-extra/clangd/
DDiagnostics.cpp95 return L != R.getEnd() && M.isPointWithin(L, R.getBegin(), R.getEnd()); in locationInRange()
DXRefs.cpp357 SM.isPointWithin(TouchedIdentifier ? TouchedIdentifier->location() in locateASTReferent()
/external/llvm-project/clang/include/clang/Basic/
DSourceManager.h1639 bool isPointWithin(SourceLocation Location, SourceLocation Start, in isPointWithin() function