Searched refs:destwin (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Modules/clinic/ |
D | _cursesmodule.c.h | 1367 PyCursesWindowObject *destwin, int group_right_1, 1375 PyCursesWindowObject *destwin; in _curses_window_overlay() local 1386 if (!PyArg_ParseTuple(args, "O!:overlay", &PyCursesWindow_Type, &destwin)) { in _curses_window_overlay() 1391 …if (!PyArg_ParseTuple(args, "O!iiiiii:overlay", &PyCursesWindow_Type, &destwin, &sminrow, &smincol… in _curses_window_overlay() 1400 …return_value = _curses_window_overlay_impl(self, destwin, group_right_1, sminrow, smincol, dminrow… in _curses_window_overlay() 1425 PyCursesWindowObject *destwin, 1434 PyCursesWindowObject *destwin; in _curses_window_overwrite() local 1445 if (!PyArg_ParseTuple(args, "O!:overwrite", &PyCursesWindow_Type, &destwin)) { in _curses_window_overwrite() 1450 …if (!PyArg_ParseTuple(args, "O!iiiiii:overwrite", &PyCursesWindow_Type, &destwin, &sminrow, &sminc… in _curses_window_overwrite() 1459 …return_value = _curses_window_overwrite_impl(self, destwin, group_right_1, sminrow, smincol, dminr… in _curses_window_overwrite()
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 2076 PyCursesWindowObject *destwin, int group_right_1, in _curses_window_overlay_impl() argument 2084 rtn = copywin(self->win, destwin->win, sminrow, smincol, in _curses_window_overlay_impl() 2089 rtn = overlay(self->win, destwin->win); in _curses_window_overlay_impl() 2123 PyCursesWindowObject *destwin, in _curses_window_overwrite_impl() argument 2132 rtn = copywin(self->win, destwin->win, sminrow, smincol, in _curses_window_overwrite_impl() 2137 rtn = overwrite(self->win, destwin->win); in _curses_window_overwrite_impl()
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 1053 .. method:: window.overlay(destwin[, sminrow, smincol, dminrow, dmincol, dmaxrow, dmaxcol]) 1055 Overlay the window on top of *destwin*. The windows need not be the same size, 1058 *destwin*. 1066 .. method:: window.overwrite(destwin[, sminrow, smincol, dminrow, dmincol, dmaxrow, dmaxcol]) 1068 Overwrite the window on top of *destwin*. The windows need not be the same size, 1071 *destwin*.
|
/external/python/cpython3/Doc/library/ |
D | curses.rst | 1149 .. method:: window.overlay(destwin[, sminrow, smincol, dminrow, dmincol, dmaxrow, dmaxcol]) 1151 Overlay the window on top of *destwin*. The windows need not be the same size, 1154 *destwin*. 1162 .. method:: window.overwrite(destwin[, sminrow, smincol, dminrow, dmincol, dmaxrow, dmaxcol]) 1164 Overwrite the window on top of *destwin*. The windows need not be the same size, 1167 *destwin*.
|