Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Edit/
H A DEditedSource.cpp160 if (BeginOffs == B) in commitInsertFromRange()
163 if (BeginOffs < E) { in commitInsertFromRange()
164 if (BeginOffs > B) { in commitInsertFromRange()
165 BeginOffs = E; in commitInsertFromRange()
177 if (BeginOffs < B) { in commitInsertFromRange()
185 BeginOffs = E; in commitInsertFromRange()
188 if (BeginOffs < EndOffs) { in commitInsertFromRange()
214 if (BeginOffs < E) in commitRemove()
231 if (BeginOffs < B) { in commitRemove()
234 TopBegin = BeginOffs; in commitRemove()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Edit/
H A DEditedSource.h100 void commitRemove(SourceLocation OrigLoc, FileOffset BeginOffs, unsigned Len);
102 StringRef getSourceText(FileOffset BeginOffs, FileOffset EndOffs,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1373 SourceLocation::UIntTy BeginOffs = Start.getOffset();
1374 SourceLocation::UIntTy EndOffs = BeginOffs + Length;
1375 if (LocOffs >= BeginOffs && LocOffs < EndOffs) {
1377 *RelativeOffset = LocOffs - BeginOffs;
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1812 unsigned BeginOffs; in associateFileChunkWithMacroArgExp() local
1813 if (!isInFileID(SpellLoc, FID, &BeginOffs)) in associateFileChunkWithMacroArgExp()
1816 unsigned EndOffs = BeginOffs + ExpansionLength; in associateFileChunkWithMacroArgExp()
1838 MacroArgsCache[BeginOffs] = ExpansionLoc; in associateFileChunkWithMacroArgExp()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp889 unsigned BeginOffs; in makeRangeFromFileLocs() local
890 std::tie(FID, BeginOffs) = SM.getDecomposedLoc(Begin); in makeRangeFromFileLocs()
896 BeginOffs > EndOffs) in makeRangeFromFileLocs()