Lines Matching defs:redo_char_point
4267 short redo_char_point;
22409 state->redo_char_point = NK_TEXTEDIT_UNDOCHARCOUNT;
22448 state->redo_char_point = (short)(state->redo_char_point + n);
22449 num = (nk_size)(NK_TEXTEDIT_UNDOCHARCOUNT - state->redo_char_point);
22450 NK_MEMCPY(state->undo_char + state->redo_char_point,
22451 state->undo_char + state->redo_char_point-n, num * sizeof(char));
22545 while (s->undo_char_point + u.delete_length > s->redo_char_point) {
22554 r->char_storage = (short)(s->redo_char_point - u.delete_length);
22555 s->redo_char_point = (short)(s->redo_char_point - u.delete_length);
22600 if (s->undo_char_point + u->insert_length > s->redo_char_point) {
22661 state->undo.redo_char_point = NK_TEXTEDIT_UNDOCHARCOUNT;