Searched refs:height (Results 1 – 10 of 10) sorted by relevance
/libuv/docs/code/tty-gravity/ |
H A D | main.c | 10 int width, height; variable 26 if (pos > height) { in update() 38 if (uv_tty_get_winsize(&tty, &width, &height)) { in main() 44 fprintf(stderr, "Width %d, height %d\n", width, height); in main()
|
/libuv/test/ |
H A D | test-tty-escape-sequence-processing.c | 85 int height; member 316 if (actual->si.height != expect->si.height) { in compare_screen() 390 cursor_pos_old.Y = si.height / 2; in TEST_IMPL() 461 cursor_pos_old.Y = si.height; in TEST_IMPL() 522 cursor_pos_old.Y = si.height; in TEST_IMPL() 634 cursor_pos_old.Y = si.height; in TEST_IMPL() 762 cursor_pos.Y = si.height / 2; in TEST_IMPL() 1267 cursor_pos.Y = si.height / 4; in TEST_IMPL() 1286 cursor_pos.Y = si.height / 4; in TEST_IMPL() 1553 expect.si.height / 2, in TEST_IMPL() [all …]
|
H A D | test-tty.c | 45 int r, width, height; in TEST_IMPL() local 107 r = uv_tty_get_winsize(&tty_out, &width, &height); in TEST_IMPL() 110 printf("width=%d height=%d\n", width, height); in TEST_IMPL() 112 if (width == 0 && height == 0) { in TEST_IMPL() 120 ASSERT_GT(height, 0); in TEST_IMPL()
|
/libuv/src/unix/ |
H A D | tty.c | 369 int uv_tty_get_winsize(uv_tty_t* tty, int* width, int* height) { in uv_tty_get_winsize() argument 381 *height = ws.ws_row; in uv_tty_get_winsize()
|
/libuv/src/win/ |
H A D | tty.c | 412 int uv_tty_get_winsize(uv_tty_t* tty, int* width, int* height) { in uv_tty_get_winsize() argument 424 *height = uv_tty_virtual_height; in uv_tty_get_winsize() 2391 int width, height; local 2397 height = sb_info.srWindow.Bottom - sb_info.srWindow.Top + 1; 2400 if (width != uv__tty_console_width || height != uv__tty_console_height) { 2402 uv__tty_console_height = height;
|
/libuv/docs/src/ |
H A D | tty.rst | 114 .. c:function:: int uv_tty_get_winsize(uv_tty_t* handle, int* width, int* height)
|
/libuv/docs/src/guide/ |
H A D | basics.rst | 78 <iframe width="560" height="315"
|
H A D | utilities.rst | 412 width and height of the terminal and returns ``0`` on success. Here is a small
|
/libuv/include/ |
H A D | uv.h | 824 UV_EXTERN int uv_tty_get_winsize(uv_tty_t*, int* width, int* height);
|
/libuv/ |
H A D | ChangeLog | 4713 * test: skip tty test if detected width and height are 0 (Saúl Ibarra Corretgé)
|
Completed in 55 milliseconds