Lines Matching refs:amount
275 * Moves cursor down amount lines, scrolls if necessary.
279 xtermIndex(XtermWidget xw, int amount)
288 || screen->cur_row + amount <= screen->bot_marg
291 CursorDown(screen, amount);
295 xtermScroll(xw, amount - j);
300 * Moves cursor up amount lines, reverse scrolls if necessary.
304 RevIndex(XtermWidget xw, int amount)
313 || screen->cur_row - amount >= screen->top_marg
316 CursorUp(screen, amount);
318 RevScroll(xw, amount - (screen->cur_row - screen->top_marg));