Searched refs:is_term_resized (Results 1 – 15 of 15) sorted by relevance
/external/python/cffi/demo/ |
D | _curses.py | 829 def is_term_resized(lines, columns): function 831 return lib.is_term_resized(lines, columns)
|
/external/python/cpython2/Lib/test/ |
D | test_curses.py | 338 curses.is_term_resized(*self.stdscr.getmaxyx())
|
/external/python/cpython3/Lib/test/ |
D | test_curses.py | 349 curses.is_term_resized(*self.stdscr.getmaxyx())
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 3305 return PyBool_FromLong(is_term_resized(nlines, ncols)); in _curses_isendwin_impl()
|
/external/python/cpython2/Modules/ |
D | _cursesmodule.c | 2142 result = is_term_resized(lines, columns); in PyCurses_Is_Term_Resized()
|
/external/python/cpython2/ |
D | pyconfig.h.in | 157 /* Define if you have the 'is_term_resized' function. */
|
D | configure.ac | 4595 AC_MSG_CHECKING(for is_term_resized) 4596 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=is_term_resized]])], 4597 [AC_DEFINE(HAVE_CURSES_IS_TERM_RESIZED, 1, Define if you have the 'is_term_resized' function.)
|
D | configure | 14782 void *x=is_term_resized
|
/external/python/cpython3/ |
D | configure.ac | 5034 AC_MSG_CHECKING(for is_term_resized) 5035 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=is_term_resized]])], 5036 [AC_DEFINE(HAVE_CURSES_IS_TERM_RESIZED, 1, Define if you have the 'is_term_resized' function.)
|
D | pyconfig.h.in | 181 /* Define if you have the 'is_term_resized' function. */
|
D | configure | 16034 void *x=is_term_resized
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 302 .. function:: is_term_resized(nlines, ncols)
|
/external/python/cpython3/Doc/library/ |
D | curses.rst | 310 .. function:: is_term_resized(nlines, ncols)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 716 is_term_resized, resize_term and resizeterm.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 18100 is_term_resized, resize_term and resizeterm.
|