Home
last modified time | relevance | path

Searched refs:height (Results 1 – 10 of 10) sorted by relevance

/libuv/docs/code/tty-gravity/
H A Dmain.c10 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 Dtest-tty-escape-sequence-processing.c85 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 Dtest-tty.c45 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 Dtty.c338 int uv_tty_get_winsize(uv_tty_t* tty, int* width, int* height) { in uv_tty_get_winsize() argument
350 *height = ws.ws_row; in uv_tty_get_winsize()
/libuv/src/win/
H A Dtty.c412 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 Dtty.rst114 .. c:function:: int uv_tty_get_winsize(uv_tty_t* handle, int* width, int* height)
/libuv/docs/src/guide/
H A Dbasics.rst78 <iframe width="560" height="315"
H A Dutilities.rst412 width and height of the terminal and returns ``0`` on success. Here is a small
/libuv/include/
H A Duv.h821 UV_EXTERN int uv_tty_get_winsize(uv_tty_t*, int* width, int* height);
/libuv/
H A DChangeLog4462 * test: skip tty test if detected width and height are 0 (Saúl Ibarra Corretgé)

Completed in 67 milliseconds