/external/python/cpython2/Modules/ |
D | _cursesmodule.c | 761 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_DerWin() local 767 if (!PyArg_ParseTuple(args,"ii;begin_y,begin_x",&begin_y,&begin_x)) in PyCursesWindow_DerWin() 772 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_DerWin() 780 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in PyCursesWindow_DerWin() 1452 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_SubWin() local 1458 if (!PyArg_ParseTuple(args,"ii;begin_y,begin_x",&begin_y,&begin_x)) in PyCursesWindow_SubWin() 1463 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_SubWin() 1474 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 1478 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 2264 int nlines, ncols, begin_y=0, begin_x=0; in PyCurses_NewWindow() local [all …]
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 1032 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_DerWin() local 1038 if (!PyArg_ParseTuple(args,"ii;begin_y,begin_x",&begin_y,&begin_x)) in PyCursesWindow_DerWin() 1043 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_DerWin() 1051 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in PyCursesWindow_DerWin() 1840 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_SubWin() local 1846 if (!PyArg_ParseTuple(args,"ii;begin_y,begin_x",&begin_y,&begin_x)) in PyCursesWindow_SubWin() 1851 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_SubWin() 1862 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 1866 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 2733 int nlines, ncols, begin_y=0, begin_x=0; in PyCurses_NewWindow() local [all …]
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 384 newwin(nlines, ncols, begin_y, begin_x) 386 Return a new window, whose left-upper corner is at ``(begin_y, begin_x)``, and 826 .. method:: window.derwin(begin_y, begin_x) 827 window.derwin(nlines, ncols, begin_y, begin_x) 830 :meth:`subwin`, except that *begin_y* and *begin_x* are relative to the origin 1154 .. method:: window.subpad(begin_y, begin_x) 1155 window.subpad(nlines, ncols, begin_y, begin_x) 1157 Return a sub-window, whose upper-left corner is at ``(begin_y, begin_x)``, and 1161 .. method:: window.subwin(begin_y, begin_x) 1162 window.subwin(nlines, ncols, begin_y, begin_x) [all …]
|
/external/python/cpython3/Doc/library/ |
D | curses.rst | 392 newwin(nlines, ncols, begin_y, begin_x) 395 is at ``(begin_y, begin_x)``, and whose height/width is *nlines*/*ncols*. 848 .. method:: window.derwin(begin_y, begin_x) 849 window.derwin(nlines, ncols, begin_y, begin_x) 852 :meth:`subwin`, except that *begin_y* and *begin_x* are relative to the origin 1199 .. method:: window.subpad(begin_y, begin_x) 1200 window.subpad(nlines, ncols, begin_y, begin_x) 1202 Return a sub-window, whose upper-left corner is at ``(begin_y, begin_x)``, and 1206 .. method:: window.subwin(begin_y, begin_x) 1207 window.subwin(nlines, ncols, begin_y, begin_x) [all …]
|
/external/python/cpython2/Doc/howto/ |
D | curses.rst | 146 begin_x = 20; begin_y = 7 148 win = curses.newwin(height, width, begin_y, begin_x)
|
/external/python/cpython3/Doc/howto/ |
D | curses.rst | 181 begin_x = 20; begin_y = 7 183 win = curses.newwin(height, width, begin_y, begin_x)
|