Lines Matching refs:row
172 int row = 0; in ui_browser__rb_tree_refresh() local
180 ui_browser__gotorc(browser, row, 0); in ui_browser__rb_tree_refresh()
181 browser->write(browser, nd, row); in ui_browser__rb_tree_refresh()
182 if (++row == browser->rows) in ui_browser__rb_tree_refresh()
187 return row; in ui_browser__rb_tree_refresh()
190 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row) in ui_browser__is_current_entry() argument
192 return browser->top_idx + row == browser->index; in ui_browser__is_current_entry()
315 row = 0; in ui_browser__scrollbar_set() local
325 ui_browser__gotorc(browser, row++, col); in ui_browser__scrollbar_set()
335 int row; in __ui_browser__refresh() local
338 row = browser->refresh(browser); in __ui_browser__refresh()
346 SLsmg_fill_region(browser->y + row + browser->extra_title_lines, browser->x, in __ui_browser__refresh()
347 browser->rows - row, width, ' '); in __ui_browser__refresh()
501 int row = 0; in ui_browser__list_head_refresh() local
510 ui_browser__gotorc(browser, row, 0); in ui_browser__list_head_refresh()
511 browser->write(browser, pos, row); in ui_browser__list_head_refresh()
512 if (++row == browser->rows) in ui_browser__list_head_refresh()
517 return row; in ui_browser__list_head_refresh()
626 unsigned int row = 0, idx = browser->top_idx; in ui_browser__argv_refresh() local
635 ui_browser__gotorc(browser, row, 0); in ui_browser__argv_refresh()
636 browser->write(browser, pos, row); in ui_browser__argv_refresh()
637 if (++row == browser->rows) in ui_browser__argv_refresh()
645 return row; in ui_browser__argv_refresh()
669 unsigned int row, end_row; in __ui_browser__line_arrow_up() local
674 row = start - browser->top_idx; in __ui_browser__line_arrow_up()
675 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_up()
677 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_up()
680 if (row-- == 0) in __ui_browser__line_arrow_up()
683 row = browser->rows - 1; in __ui_browser__line_arrow_up()
691 SLsmg_draw_vline(row - end_row + 1); in __ui_browser__line_arrow_up()
709 unsigned int row, end_row; in __ui_browser__line_arrow_down() local
714 row = start - browser->top_idx; in __ui_browser__line_arrow_down()
715 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
717 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_down()
720 if (++row == 0) in __ui_browser__line_arrow_down()
723 row = 0; in __ui_browser__line_arrow_down()
730 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
731 SLsmg_draw_vline(end_row - row + 1); in __ui_browser__line_arrow_down()
755 unsigned int row, bool arrow_down) in ui_browser__mark_fused() argument
759 if (row >= browser->top_idx) in ui_browser__mark_fused()
760 end_row = row - browser->top_idx; in ui_browser__mark_fused()