Searched refs:t_cursor (Results 1 – 3 of 3) sorted by relevance
188 t->t_cursor.tp_row = t->t_cursor.tp_col = 0; in teken_subr_alignment_test()209 t->t_cursor.tp_row--; in teken_subr_backspace()212 t->t_cursor.tp_col--; in teken_subr_backspace()218 t->t_cursor.tp_col--; in teken_subr_backspace()236 t->t_cursor.tp_col = 0; in teken_subr_carriage_return()262 t->t_cursor.tp_col--; in teken_subr_cursor_backward_tabulation()305 t->t_cursor.tp_col++; in teken_subr_cursor_forward_tabulation()634 t->t_cursor.tp_row++; in teken_subr_index()718 t->t_cursor.tp_row++; in teken_subr_newline()940 t->t_cursor.tp_row = t->t_cursor.tp_col = 0; in teken_subr_reset_dec_mode()[all …]
91 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row); in teken_funcs_cursor()92 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_funcs_cursor()95 t->t_funcs->tf_cursor(t->t_softc, &t->t_cursor); in teken_funcs_cursor()262 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row); in teken_input_char()263 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_input_char()325 return (&t->t_cursor); in teken_get_cursor()336 t->t_cursor = *p; in teken_set_cursor()383 if (t->t_cursor.tp_row >= new->tp_row) in teken_trim_cursor_pos()384 t->t_cursor.tp_row = new->tp_row - 1; in teken_trim_cursor_pos()385 if (t->t_cursor.tp_col >= new->tp_col) in teken_trim_cursor_pos()[all …]
141 teken_pos_t t_cursor; member