Home | History | Annotate | Download | only in Rewrite

Lines Matching refs:StartOffs

237   unsigned StartOffs = getLocationOffsetAndFileID(Loc, FID);
243 unsigned lineNo = SourceMgr->getLineNumber(FID, StartOffs) - 1;
270 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter);
277 unsigned StartOffs = getLocationOffsetAndFileID(Loc, FID);
280 StartOffs += getRangeSize(SourceRange(Loc, Loc), rangeOpts);
281 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true);
290 unsigned StartOffs = getLocationOffsetAndFileID(Start, FID);
291 getEditBuffer(FID).RemoveText(StartOffs, Length, opts.RemoveLineIfEmpty);
302 unsigned StartOffs = getLocationOffsetAndFileID(Start, StartFileID);
304 getEditBuffer(StartFileID).ReplaceText(StartOffs, OrigLength, NewStr);