Home | History | Annotate | Download | only in Core

Lines Matching refs:StartOffs

246   unsigned StartOffs = getLocationOffsetAndFileID(Loc, FID);
252 unsigned lineNo = SourceMgr->getLineNumber(FID, StartOffs) - 1;
279 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter);
286 unsigned StartOffs = getLocationOffsetAndFileID(Loc, FID);
289 StartOffs += getRangeSize(SourceRange(Loc, Loc), rangeOpts);
290 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true);
299 unsigned StartOffs = getLocationOffsetAndFileID(Start, FID);
300 getEditBuffer(FID).RemoveText(StartOffs, Length, opts.RemoveLineIfEmpty);
311 unsigned StartOffs = getLocationOffsetAndFileID(Start, StartFileID);
313 getEditBuffer(StartFileID).ReplaceText(StartOffs, OrigLength, NewStr);