Lines Matching refs:x
1153 CONSOLE_SCREEN_BUFFER_INFO* info, int x, unsigned char x_relative, int y, in uv__tty_make_real_coord() argument
1174 x = info->dwCursorPosition.X + x; in uv__tty_make_real_coord()
1177 if (x < 0) { in uv__tty_make_real_coord()
1178 x = 0; in uv__tty_make_real_coord()
1179 } else if (x >= uv_tty_virtual_width) { in uv__tty_make_real_coord()
1180 x = uv_tty_virtual_width - 1; in uv__tty_make_real_coord()
1183 result.X = (unsigned short) x; in uv__tty_make_real_coord()
1210 static int uv__tty_move_caret(uv_tty_t* handle, int x, unsigned char x_relative, in uv__tty_move_caret() argument
1224 pos = uv__tty_make_real_coord(handle, &info, x, x_relative, y, y_relative); in uv__tty_move_caret()
1956 int x, y, d; local
1977 x = handle->tty.wr.ansi_csi_argc
1979 uv__tty_move_caret(handle, x, 1, 0, 1, error);
1985 x = -(handle->tty.wr.ansi_csi_argc
1987 uv__tty_move_caret(handle, x, 1, 0, 1, error);
2009 x = (handle->tty.wr.ansi_csi_argc >= 1 &&
2012 uv__tty_move_caret(handle, x, 0, 0, 1, error);
2022 x = (handle->tty.wr.ansi_csi_argc >= 2 &&
2025 uv__tty_move_caret(handle, x, 0, y, 0, error);