Lines Matching full:row

171 	int row = 0;  in ui_browser__rb_tree_refresh()  local
179 ui_browser__gotorc(browser, row, 0); in ui_browser__rb_tree_refresh()
180 browser->write(browser, nd, row); in ui_browser__rb_tree_refresh()
181 if (++row == browser->rows) in ui_browser__rb_tree_refresh()
186 return row; in ui_browser__rb_tree_refresh()
189 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row) in ui_browser__is_current_entry() argument
191 return browser->top_idx + row == browser->index; in ui_browser__is_current_entry()
314 row = 0; in ui_browser__scrollbar_set() local
324 ui_browser__gotorc(browser, row++, col); in ui_browser__scrollbar_set()
334 int row; in __ui_browser__refresh() local
337 row = browser->refresh(browser); in __ui_browser__refresh()
345 SLsmg_fill_region(browser->y + row + browser->extra_title_lines, browser->x, in __ui_browser__refresh()
346 browser->rows - row, width, ' '); in __ui_browser__refresh()
502 int row = 0; in ui_browser__list_head_refresh() local
511 ui_browser__gotorc(browser, row, 0); in ui_browser__list_head_refresh()
512 browser->write(browser, pos, row); in ui_browser__list_head_refresh()
513 if (++row == browser->rows) in ui_browser__list_head_refresh()
518 return row; in ui_browser__list_head_refresh()
629 unsigned int row = 0, idx = browser->top_idx; in ui_browser__argv_refresh() local
637 row < (unsigned)SLtt_Screen_Rows - 1) { in ui_browser__argv_refresh()
640 ui_browser__gotorc(browser, row, 0); in ui_browser__argv_refresh()
641 browser->write(browser, pos, row); in ui_browser__argv_refresh()
642 if (++row == browser->rows) in ui_browser__argv_refresh()
650 return row; in ui_browser__argv_refresh()
674 unsigned int row, end_row; in __ui_browser__line_arrow_up() local
679 row = start - browser->top_idx; in __ui_browser__line_arrow_up()
680 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_up()
682 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_up()
685 if (row-- == 0) in __ui_browser__line_arrow_up()
688 row = browser->rows - 1; in __ui_browser__line_arrow_up()
696 SLsmg_draw_vline(row - end_row + 1); in __ui_browser__line_arrow_up()
714 unsigned int row, end_row; in __ui_browser__line_arrow_down() local
719 row = start - browser->top_idx; in __ui_browser__line_arrow_down()
720 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
722 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_down()
725 if (++row == 0) in __ui_browser__line_arrow_down()
728 row = 0; in __ui_browser__line_arrow_down()
735 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_down()
736 SLsmg_draw_vline(end_row - row + 1); in __ui_browser__line_arrow_down()
760 unsigned int row, bool arrow_down) in ui_browser__mark_fused() argument
764 if (row >= browser->top_idx) in ui_browser__mark_fused()
765 end_row = row - browser->top_idx; in ui_browser__mark_fused()