Home
last modified time | relevance | path

Searched refs:el_cursor (Results 1 – 5 of 5) sorted by relevance

/dragonfly/contrib/libedit/src/
HDterminal.c497 if (where == el->el_cursor.v) in terminal_move_to_line()
507 if ((del = where - el->el_cursor.v) > 0) { in terminal_move_to_line()
515 el->el_cursor.h = 0; in terminal_move_to_line()
525 el->el_cursor.v = where;/* now where is here */ in terminal_move_to_line()
538 if (where == el->el_cursor.h) in terminal_move_to_char()
550 el->el_cursor.h = 0; in terminal_move_to_char()
553 del = where - el->el_cursor.h; in terminal_move_to_char()
566 if ((el->el_cursor.h & 0370) != in terminal_move_to_char()
569 el->el_cursor.v][where & 0370] != in terminal_move_to_char()
574 (el->el_cursor.h & 0370); in terminal_move_to_char()
[all …]
HDrefresh.c1101 while (w > 1 && el->el_cursor.h + w > el->el_terminal.t_size.h) in re_fastputc()
1105 el->el_display[el->el_cursor.v][el->el_cursor.h++] = c; in re_fastputc()
1107 el->el_display[el->el_cursor.v][el->el_cursor.h++] in re_fastputc()
1110 if (el->el_cursor.h >= el->el_terminal.t_size.h) { in re_fastputc()
1112 el->el_cursor.h = 0; in re_fastputc()
1120 if (el->el_cursor.v + 1 >= el->el_terminal.t_size.v) { in re_fastputc()
1129 el->el_cursor.v++; in re_fastputc()
1164 rhdiff = el->el_terminal.t_size.h - el->el_cursor.h - in re_fastaddc()
1199 el->el_cursor.v = 0; in re_clear_display()
1200 el->el_cursor.h = 0; in re_clear_display()
HDel.h120 coord_t el_cursor; /* Cursor location */ member
HDhistedit.h286 int el_cursor(EditLine *, int);
HDchared.c694 el_cursor(EditLine *el, int n) in el_cursor() function