Home
last modified time | relevance | path

Searched refs:begin_y (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Modules/clinic/
H A D_cursesmodule.c.h578 "derwin([nlines=0, ncols=0,] begin_y, begin_x)\n"
585 " begin_y\n"
590 "derwin() is the same as calling subwin(), except that begin_y and begin_x\n"
599 int nlines, int ncols, int begin_y, int begin_x);
608 int begin_y; in _curses_window_derwin() local
613 if (!PyArg_ParseTuple(args, "ii:derwin", &begin_y, &begin_x)) { in _curses_window_derwin()
618 if (!PyArg_ParseTuple(args, "iiii:derwin", &nlines, &ncols, &begin_y, &begin_x)) { in _curses_window_derwin()
627 return_value = _curses_window_derwin_impl(self, group_left_1, nlines, ncols, begin_y, begin_x); in _curses_window_derwin()
1619 "subwin([nlines=0, ncols=0,] begin_y, begin_x)\n"
1626 " begin_y\
1648 int begin_y; _curses_window_subwin() local
3227 int begin_y = 0; _curses_newwin() local
[all...]
/third_party/python/Modules/
H A D_cursesmodule.c1286 begin_y: int
1294 derwin() is the same as calling subwin(), except that begin_y and begin_x
1301 int nlines, int ncols, int begin_y, int begin_x) in _curses_window_derwin_impl()
1306 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in _curses_window_derwin_impl()
2308 begin_y: int
2322 int nlines, int ncols, int begin_y, int begin_x) in _curses_window_subwin_impl()
2327 /* printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x); */ in _curses_window_subwin_impl()
2330 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in _curses_window_subwin_impl()
2334 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in _curses_window_subwin_impl()
3739 begin_y
1300 _curses_window_derwin_impl(PyCursesWindowObject *self, int group_left_1, int nlines, int ncols, int begin_y, int begin_x) _curses_window_derwin_impl() argument
2321 _curses_window_subwin_impl(PyCursesWindowObject *self, int group_left_1, int nlines, int ncols, int begin_y, int begin_x) _curses_window_subwin_impl() argument
3753 _curses_newwin_impl(PyObject *module, int nlines, int ncols, int group_right_1, int begin_y, int begin_x) _curses_newwin_impl() argument
[all...]

Completed in 8 milliseconds