Home
last modified time | relevance | path

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

/freebsd/contrib/libedit/
H A Dterminal.c495 if (where == el->el_cursor.v) in terminal_move_to_line()
505 if ((del = where - el->el_cursor.v) > 0) { in terminal_move_to_line()
513 el->el_cursor.h = 0; in terminal_move_to_line()
523 el->el_cursor.v = where;/* now where is here */ in terminal_move_to_line()
536 if (where == el->el_cursor.h) in terminal_move_to_char()
548 el->el_cursor.h = 0; in terminal_move_to_char()
551 del = where - el->el_cursor.h; in terminal_move_to_char()
564 if ((el->el_cursor.h & 0370) != in terminal_move_to_char()
567 el->el_cursor.v][where & 0370] != in terminal_move_to_char()
572 (el->el_cursor.h & 0370); in terminal_move_to_char()
[all …]
H A Drefresh.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()
H A Del.h120 coord_t el_cursor; /* Cursor location */ member
H A Dhistedit.h279 int el_cursor(EditLine *, int);
H A Dchared.c697 el_cursor(EditLine *el, int n) in el_cursor() function