Searched refs:max_row (Results 1 - 14 of 14) sorted by relevance

/xsrc/external/mit/xterm/dist/
H A Dcursor.c73 int max_row = screen->max_row; local in function:CursorSet
84 max_row = screen->bot_marg;
87 set_cur_row(screen, (use_row <= max_row ? use_row : max_row));
175 row = (top == 0) ? bottom : screen->max_row;
242 screen->max_row : screen->bot_marg);
245 if (next > screen->max_row)
246 next = screen->max_row;
H A Dprint.c140 row, ROW2INX(screen, row), screen->topline, screen->max_row, chr,
271 extent ? screen->max_row : screen->bot_marg,
314 printLines(xw, 0, screen->max_row, p);
320 printLines(xw, 0, screen->max_row, p);
325 printLines(xw, 0, screen->max_row, p);
330 int bot = screen->max_row;
H A Dutil.c189 int bot = screen->max_row - shift;
213 i = screen->max_row - screen->scroll_amt + 1;
678 bot = screen->max_row - shift;
683 (i = screen->max_row - refreshheight + 1))
704 screen->bot_marg == screen->max_row) {
825 int max_row; local in function:xtermColScroll
829 max_row = screen->bot_marg;
832 max_row = screen->max_row;
836 && screen->cur_row <= max_row
[all...]
H A Dtestxmc.c207 } else if (!screen->xmc_inline && row < screen->max_row) {
H A Dlinedata.c49 int max_row = LastRowNumber(screen); local in function:getLineData
57 if (row >= 0 && row <= max_row) {
H A Dbutton.c760 else if ((row) > screen->max_row) \
761 (row) = screen->max_row,(oor)=True; \
1035 ry = screen->max_row;
2974 screen->lastValidRow = screen->max_row;
3029 else if (x >= screen->max_row) \
3030 x = screen->max_row
3242 screen->lastValidRow = screen->max_row;
3360 int maxrow = INX2ROW(screen, screen->max_row);
3764 } else if (cell->row > screen->max_row) {
3766 TRACE(("okPosition cell row %d > screen max %d\n", cell->row, screen->max_row));
[all...]
H A Ddoublechr.c156 for (row = 0; row < screen->max_row; ++row) {
H A Dscreen.c81 #define getMaxRow(screen) ((xw->flags & ORIGIN) ? (screen)->bot_marg : (screen)->max_row)
480 - (TScreenOf(xw)->max_row - TScreenOf(xw)->cur_row);
1442 if (screen->show_wrap_marks && row >= 0 && row <= screen->max_row) {
1582 if (!recurse && (maxrow == screen->max_row) && IsStatusShown(screen)) {
2097 5. Sets screen->max_row and screen->max_col to reflect new size
2320 set_max_row(screen, screen->max_row + delta_rows);
2342 if (screen->cur_row > screen->max_row)
2343 set_cur_row(screen, screen->max_row);
2465 int max_row = maxRectRow(screen); local in function:limitedParseRow
2472 else if (row > max_row)
[all...]
H A Dptyx.h299 * on a screen is screen->max_row + 1, and similarly for columns.
302 #define MaxRows(screen) ((screen)->max_row + 1)
1975 ((row) <= ((screen)->max_row - (screen)->topline) \
2708 int max_row; /* bottom row */ member in struct:__anon7e1168c34108
2879 ( (screen)->max_row \
2905 #define LastRowNumber(screen) (screen)->max_row
H A Dscrollbar.c411 scrollheight = screen->max_row - lines + 1;
H A Dcharproc.c991 for (; isClear && (row <= screen->max_row); ++row) {
1335 if (screen->top_marg > screen->max_row)
1336 screen->top_marg = screen->max_row;
1337 if (screen->bot_marg > screen->max_row)
1338 screen->bot_marg = screen->max_row;
1358 #define reset_tb_margins(screen) set_tb_margins(screen, 0, screen->max_row)
1399 TRACE(("set_max_row %d, prior %d\n", rows, screen->max_row));
1402 screen->max_row = rows;
3051 if ((row = GetParam(0)) > screen->max_row)
3799 CursorSet(screen, screen->max_row,
[all...]
H A Dxterm.h1624 || ((screen)->bot_marg != screen->max_row))
H A Dmisc.c4930 ((screen->max_row > 24) ? screen->max_row : 24),
4963 screen->max_row + 1,
H A Dmain.c3507 handshake.rows = screen->max_row;

Completed in 51 milliseconds