Home | History | Annotate | Download | only in src

Lines Matching full:rows

61   state->rows = vt->rows;
106 else if(state->pos.row < state->rows-1)
554 for(pos.row = 0; pos.row < state->rows; pos.row++)
951 rect.start_row = state->pos.row + 1; rect.end_row = state->rows;
970 rect.start_row = 0; rect.end_row = state->rows;
1264 if(state->scrollregion_top == 0 && state->scrollregion_bottom == state->rows)
1312 UBOUND(state->pos.row, state->rows-1);
1407 static int on_resize(int rows, int cols, void *user)
1437 state->rows = rows;
1443 (*state->callbacks->resize)(rows, cols, &delta, state->cbdata);
1453 if(state->pos.row >= rows)
1454 state->pos.row = rows - 1;
1550 VTermRect rect = { 0, state->rows, 0, state->cols };
1606 .end_row = state->rows,