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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Edit/
H A DEditedSource.cpp149 FileOffset BeginOffs = InsertFromRangeOffs; local
150 FileOffset EndOffs = BeginOffs.getWithOffset(Len);
151 FileEditsTy::iterator I = FileEdits.upper_bound(BeginOffs);
160 if (BeginOffs == B)
163 if (BeginOffs < E) {
164 if (BeginOffs > B) {
165 BeginOffs = E;
177 if (BeginOffs < B) {
179 StringRef text = getSourceText(BeginOffs, B, Invalid);
185 BeginOffs
199 commitRemove(SourceLocation OrigLoc, FileOffset BeginOffs, unsigned Len) argument
[all...]
/freebsd-11-stable/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-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1346 unsigned BeginOffs = Start.getOffset(); local
1347 unsigned EndOffs = BeginOffs + Length;
1348 if (LocOffs >= BeginOffs && LocOffs < EndOffs) {
1350 *RelativeOffset = LocOffs - BeginOffs;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1796 unsigned BeginOffs; local
1797 if (!isInFileID(SpellLoc, FID, &BeginOffs))
1800 unsigned EndOffs = BeginOffs + ExpansionLength;
1822 MacroArgsCache[BeginOffs] = ExpansionLoc;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp862 unsigned BeginOffs; local
863 std::tie(FID, BeginOffs) = SM.getDecomposedLoc(Begin);
869 BeginOffs > EndOffs)

Completed in 106 milliseconds