Lines Matching refs:row
158 int row = 0; in ui_browser__rb_tree_refresh() local
166 ui_browser__gotorc(browser, row, 0); in ui_browser__rb_tree_refresh()
167 browser->write(browser, nd, row); in ui_browser__rb_tree_refresh()
168 if (++row == browser->rows) in ui_browser__rb_tree_refresh()
173 return row; in ui_browser__rb_tree_refresh()
176 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row) in ui_browser__is_current_entry() argument
178 return browser->top_idx + row == browser->index; in ui_browser__is_current_entry()
300 row = 0; in ui_browser__scrollbar_set() local
310 ui_browser__gotorc(browser, row++, col); in ui_browser__scrollbar_set()
320 int row; in __ui_browser__refresh() local
323 row = browser->refresh(browser); in __ui_browser__refresh()
331 SLsmg_fill_region(browser->y + row, browser->x, in __ui_browser__refresh()
332 browser->height - row, width, ' '); in __ui_browser__refresh()
486 int row = 0; in ui_browser__list_head_refresh() local
495 ui_browser__gotorc(browser, row, 0); in ui_browser__list_head_refresh()
496 browser->write(browser, pos, row); in ui_browser__list_head_refresh()
497 if (++row == browser->rows) in ui_browser__list_head_refresh()
502 return row; in ui_browser__list_head_refresh()
611 unsigned int row = 0, idx = browser->top_idx; in ui_browser__argv_refresh() local
620 ui_browser__gotorc(browser, row, 0); in ui_browser__argv_refresh()
621 browser->write(browser, pos, row); in ui_browser__argv_refresh()
622 if (++row == browser->rows) in ui_browser__argv_refresh()
630 return row; in ui_browser__argv_refresh()
654 unsigned int row, end_row; in __ui_browser__line_arrow_up() local
659 row = start - browser->top_idx; in __ui_browser__line_arrow_up()
660 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_up()
662 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_up()
665 if (row-- == 0) in __ui_browser__line_arrow_up()
668 row = browser->rows - 1; in __ui_browser__line_arrow_up()
676 SLsmg_draw_vline(row - end_row + 1); in __ui_browser__line_arrow_up()
694 unsigned int row, end_row; in __ui_browser__line_arrow_down() local
699 row = start - browser->top_idx; in __ui_browser__line_arrow_down()
700 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
702 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_down()
705 if (row++ == 0) in __ui_browser__line_arrow_down()
708 row = 0; in __ui_browser__line_arrow_down()
715 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
716 SLsmg_draw_vline(end_row - row + 1); in __ui_browser__line_arrow_down()