Lines Matching refs:row

143 	int row = 0;  in ui_browser__rb_tree_refresh()  local
151 ui_browser__gotorc(browser, row, 0); in ui_browser__rb_tree_refresh()
152 browser->write(browser, nd, row); in ui_browser__rb_tree_refresh()
153 if (++row == browser->rows) in ui_browser__rb_tree_refresh()
158 return row; in ui_browser__rb_tree_refresh()
161 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row) in ui_browser__is_current_entry() argument
163 return browser->top_idx + row == browser->index; in ui_browser__is_current_entry()
285 row = 0; in ui_browser__scrollbar_set() local
295 ui_browser__gotorc(browser, row++, col); in ui_browser__scrollbar_set()
305 int row; in __ui_browser__refresh() local
308 row = browser->refresh(browser); in __ui_browser__refresh()
316 SLsmg_fill_region(browser->y + row, browser->x, in __ui_browser__refresh()
317 browser->height - row, width, ' '); in __ui_browser__refresh()
457 int row = 0; in ui_browser__list_head_refresh() local
466 ui_browser__gotorc(browser, row, 0); in ui_browser__list_head_refresh()
467 browser->write(browser, pos, row); in ui_browser__list_head_refresh()
468 if (++row == browser->rows) in ui_browser__list_head_refresh()
473 return row; in ui_browser__list_head_refresh()
582 unsigned int row = 0, idx = browser->top_idx; in ui_browser__argv_refresh() local
591 ui_browser__gotorc(browser, row, 0); in ui_browser__argv_refresh()
592 browser->write(browser, pos, row); in ui_browser__argv_refresh()
593 if (++row == browser->rows) in ui_browser__argv_refresh()
601 return row; in ui_browser__argv_refresh()
625 unsigned int row, end_row; in __ui_browser__line_arrow_up() local
630 row = start - browser->top_idx; in __ui_browser__line_arrow_up()
631 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_up()
633 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_up()
636 if (row-- == 0) in __ui_browser__line_arrow_up()
639 row = browser->rows - 1; in __ui_browser__line_arrow_up()
647 SLsmg_draw_vline(row - end_row + 1); in __ui_browser__line_arrow_up()
665 unsigned int row, end_row; in __ui_browser__line_arrow_down() local
670 row = start - browser->top_idx; in __ui_browser__line_arrow_down()
671 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
673 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_down()
676 if (row++ == 0) in __ui_browser__line_arrow_down()
679 row = 0; in __ui_browser__line_arrow_down()
686 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
687 SLsmg_draw_vline(end_row - row + 1); in __ui_browser__line_arrow_down()