Searched refs:EndOffs (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Edit/
H A DEditedSource.cpp150 FileOffset EndOffs = BeginOffs.getWithOffset(Len); local
172 for (; I != FileEdits.end() && EndOffs > I->first; ++I) {
188 if (BeginOffs < EndOffs) {
190 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid);
204 FileOffset EndOffs = BeginOffs.getWithOffset(Len);
235 TopEnd = EndOffs;
242 if (TopEnd >= EndOffs)
244 unsigned diff = EndOffs.getOffset() - TopEnd.getOffset();
245 TopEnd = EndOffs;
454 StringRef EditedSource::getSourceText(FileOffset BeginOffs, FileOffset EndOffs,
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h61 unsigned EndOffs = 0; member in struct:clang::RopePiece
66 : StrData(std::move(Str)), StartOffs(Start), EndOffs(End) {}
75 unsigned size() const { return EndOffs-StartOffs; }
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Edit/
H A DEditedSource.h102 StringRef getSourceText(FileOffset BeginOffs, FileOffset EndOffs,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp263 Pieces[i].EndOffs);
265 Pieces[i].EndOffs = Pieces[i].StartOffs+IntraPieceOffset;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp867 unsigned EndOffs; local
868 if (!SM.isInFileID(End, FID, &EndOffs) ||
869 BeginOffs > EndOffs)
956 unsigned EndOffs; local
957 if (!SM.isInFileID(Range.getEnd(), beginInfo.first, &EndOffs) ||
958 beginInfo.second > EndOffs) {
972 return file.substr(beginInfo.second, EndOffs - beginInfo.second);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1800 unsigned EndOffs = BeginOffs + ExpansionLength; local
1819 MacroArgsMap::iterator I = MacroArgsCache.upper_bound(EndOffs);
1823 MacroArgsCache[EndOffs] = EndOffsMappedLoc;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1347 unsigned EndOffs = BeginOffs + Length; local
1348 if (LocOffs >= BeginOffs && LocOffs < EndOffs) {

Completed in 129 milliseconds