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

/freebsd-10.2-release/contrib/ncurses/ncurses/tty/
H A Dtty_update.c122 position_check(int expected_y, int expected_x, char *legend) argument
129 if (!_nc_tracing || (expected_y < 0 && expected_x < 0))
150 if (expected_x < 0)
151 expected_x = x - 1;
154 if (y - 1 != expected_y || x - 1 != expected_x) {
156 tputs(tparm("\033[%d;%dH", expected_y + 1, expected_x + 1), 1, _nc_outch);
158 y - 1, x - 1, expected_y, expected_x, legend);
165 #define position_check(expected_y, expected_x, legend) /* nothing */

Completed in 94 milliseconds