Lines Matching refs:sourceLine
264 TerminalLine* sourceLine = other->_HistoryLineAt(i + offset, destLine); in SynchronizeWith() local
265 if (sourceLine != NULL) { in SynchronizeWith()
266 if (sourceLine != destLine) { in SynchronizeWith()
267 destLine->length = sourceLine->length; in SynchronizeWith()
268 destLine->attributes = sourceLine->attributes; in SynchronizeWith()
269 destLine->softBreak = sourceLine->softBreak; in SynchronizeWith()
271 memcpy(destLine->cells, sourceLine->cells, in SynchronizeWith()
1237 TerminalLine* sourceLine = _LineAt(i); in _ResizeSimple() local
1240 _TruncateLine(sourceLine, width); in _ResizeSimple()
1241 memcpy(destLine, sourceLine, (int32)sizeof(TerminalLine) in _ResizeSimple()
1242 + (sourceLine->length - 1) * (int32)sizeof(TerminalCell)); in _ResizeSimple()
1326 TerminalLine* sourceLine = _HistoryLineAt(-historySize, lineBuffer); in _ResizeRewrap() local
1341 int32 sourceLeft = sourceLine->length - sourceX; in _ResizeRewrap()
1357 if (toCopy > 0 && sourceLine->cells[sourceX + toCopy - 1].attributes.IsWidth()) { in _ResizeRewrap()
1383 sourceLine->cells + sourceX, toCopy * sizeof(TerminalCell)); in _ResizeRewrap()
1387 destLine->attributes = sourceLine->attributes; in _ResizeRewrap()
1391 if (!sourceLine->softBreak) in _ResizeRewrap()
1395 sourceLine = _HistoryLineAt(sourceIndex - historySize, in _ResizeRewrap()