Lines Matching full:row
176 * Move the cursor to the specified origin 0 row and column position. Try to
181 ttmove(int row, int col) in ttmove() argument
183 if (ttrow != row || ttcol != col) { in ttmove()
184 putpad(tgoto(cursor_address, col, row), 1); in ttmove()
185 ttrow = row; in ttmove()
250 ttinsl(int row, int bot, int nchunk) in ttinsl() argument
255 if (row == bot) { in ttinsl()
256 ttmove(row, 0); in ttinsl()
262 nl = bot - row; in ttinsl()
263 ttwindow(row, bot); in ttinsl()
264 ttmove(row, 0); in ttinsl()
279 ttmove(row, 0); in ttinsl()
297 * Delete nchunk line(s) from "row", replacing the bottom line on the
303 ttdell(int row, int bot, int nchunk) in ttdell() argument
308 if (row == bot) { in ttdell()
309 ttmove(row, 0); in ttdell()
315 nl = bot - row; in ttdell()
316 ttwindow(row, bot); in ttdell()
323 ttmove(row, 0); in ttdell()