Home | History | Annotate | Download | only in Rewrite

Lines Matching defs:StartOffs

244   unsigned StartOffs = getLocationOffsetAndFileID(Loc, FID);
250 unsigned lineNo = SourceMgr->getLineNumber(FID, StartOffs) - 1;
277 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter);
284 unsigned StartOffs = getLocationOffsetAndFileID(Loc, FID);
287 StartOffs += getRangeSize(SourceRange(Loc, Loc), rangeOpts);
288 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true);
297 unsigned StartOffs = getLocationOffsetAndFileID(Start, FID);
298 getEditBuffer(FID).RemoveText(StartOffs, Length, opts.RemoveLineIfEmpty);
309 unsigned StartOffs = getLocationOffsetAndFileID(Start, StartFileID);
311 getEditBuffer(StartFileID).ReplaceText(StartOffs, OrigLength, NewStr);