Lines Matching refs:y
1153 CONSOLE_SCREEN_BUFFER_INFO* info, int x, unsigned char x_relative, int y, in uv__tty_make_real_coord() argument
1161 y = info->dwCursorPosition.Y + y; in uv__tty_make_real_coord()
1163 y = uv_tty_virtual_offset + y; in uv__tty_make_real_coord()
1166 if (y < uv_tty_virtual_offset) { in uv__tty_make_real_coord()
1167 y = uv_tty_virtual_offset; in uv__tty_make_real_coord()
1168 } else if (y >= uv_tty_virtual_offset + uv_tty_virtual_height) { in uv__tty_make_real_coord()
1169 y = uv_tty_virtual_offset + uv_tty_virtual_height - 1; in uv__tty_make_real_coord()
1184 result.Y = (unsigned short) y; in uv__tty_make_real_coord()
1211 int y, unsigned char y_relative, DWORD* error) { 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
1961 y = -(handle->tty.wr.ansi_csi_argc
1963 uv__tty_move_caret(handle, 0, 1, y, 1, error);
1969 y = handle->tty.wr.ansi_csi_argc
1971 uv__tty_move_caret(handle, 0, 1, y, 1, error);
1993 y = handle->tty.wr.ansi_csi_argc
1995 uv__tty_move_caret(handle, 0, 0, y, 1, error);
2001 y = -(handle->tty.wr.ansi_csi_argc
2003 uv__tty_move_caret(handle, 0, 0, y, 1, error);
2019 y = (handle->tty.wr.ansi_csi_argc >= 1 &&
2025 uv__tty_move_caret(handle, x, 0, y, 0, error);