Searched refs:terminal_size (Results 1 – 23 of 23) sorted by relevance
/external/rust/crates/clap/ |
D | Cargo.toml | 74 [dependencies.terminal_size] 113 wrap_help = ["terminal_size", "textwrap/terminal_size"]
|
/external/toybox/toys/pending/ |
D | more.c | 126 terminal_size(&cols, &rows); in more_main() 145 terminal_size(&cols, &rows); in more_main()
|
D | telnet.c | 141 terminal_size(&cols, &rows); in handle_wwdd()
|
D | stty.c | 146 terminal_size(&TT.output_cols, NULL); in out()
|
D | vi.c | 1518 terminal_size(&TT.screen_width, &TT.screen_height); in vi_main() 1546 terminal_size(&TT.screen_width, &TT.screen_height); in vi_main()
|
/external/libtextclassifier/native/utils/grammar/parsing/ |
D | matcher.cc | 160 const int terminal_size = terminal->size(); in FindTerminalMatches() local 161 if (terminal_size < terminal_rules->min_terminal_length() || in FindTerminalMatches() 162 terminal_size > terminal_rules->max_terminal_length()) { in FindTerminalMatches()
|
/external/toybox/lib/ |
D | tty.c | 21 int terminal_size(unsigned *xx, unsigned *yy) in terminal_size() function 55 if (terminal_size(xx, yy) && (!xx || *xx) && (!yy || *yy)) return 1; in terminal_probesize()
|
D | lib.h | 322 int terminal_size(unsigned *xx, unsigned *yy);
|
D | lib.c | 938 terminal_size(&cols, 0); in list_signals()
|
/external/toybox/toys/other/ |
D | pwgen.c | 43 if (isatty(1)) terminal_size(&xx, &yy);
|
D | hexedit.c | 200 terminal_size(&TT.cols, &TT.rows); in hexedit_main() 264 terminal_size(&TT.cols, &TT.rows); in hexedit_main()
|
D | vmstat.c | 98 if (!(toys.optflags&FLAG_n) && isatty(1)) terminal_size(0, &rows); in vmstat_main()
|
/external/rust/crates/textwrap/ |
D | Cargo.toml | 42 [dependencies.terminal_size]
|
D | CHANGELOG.md | 236 The `term_size` feature has been replaced by `terminal_size`. The API
|
/external/toybox/ |
D | main.c | 203 terminal_size(&width, 0); in toybox_main()
|
/external/rust/crates/textwrap/src/ |
D | lib.rs | 574 terminal_size::terminal_size().map_or(80, |(terminal_size::Width(w), _)| w.into()) in termwidth()
|
/external/rust/crates/codespan-reporting/ |
D | Cargo.lock | 93 "terminal_size", 444 name = "terminal_size"
|
/external/python/cpython3/Lib/ |
D | shutil.py | 1353 size = os.terminal_size(fallback) 1359 return os.terminal_size((columns, lines))
|
/external/toybox/toys/posix/ |
D | ls.c | 523 else terminal_size(&TT.screen_width, NULL); in ls_main()
|
D | sed.c | 370 terminal_size(&TT.xx, 0); in sed_line()
|
D | ps.c | 1312 if (!isatty(1) || !terminal_size(&TT.width, 0)) toys.optflags |= FLAG_w; in ps_main()
|
/external/python/cpython3/Doc/library/ |
D | shutil.rst | 795 The value returned is a named tuple of type :class:`os.terminal_size`.
|
D | os.rst | 1423 tuple of type :class:`terminal_size`. 1437 .. class:: terminal_size
|