Lines Matching refs:nlines
1295 int nlines, int ncols, int begin_y, int begin_x) in _curses_window_derwin_impl() argument
1300 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in _curses_window_derwin_impl()
2316 int nlines, int ncols, int begin_y, int begin_x) in _curses_window_subwin_impl() argument
2324 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in _curses_window_subwin_impl()
2328 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in _curses_window_subwin_impl()
3536 _curses_is_term_resized_impl(PyObject *module, int nlines, int ncols) in _curses_isendwin_impl()
3541 return PyBool_FromLong(is_term_resized(nlines, ncols)); in _curses_isendwin_impl()
3708 _curses_newpad_impl(PyObject *module, int nlines, int ncols) in _curses_newpad_impl() argument
3715 win = newpad(nlines, ncols); in _curses_newpad_impl()
3747 _curses_newwin_impl(PyObject *module, int nlines, int ncols, in _curses_newwin_impl() argument
3755 win = newwin(nlines,ncols,begin_y,begin_x); in _curses_newwin_impl()
4088 _curses_resizeterm_impl(PyObject *module, int nlines, int ncols) in _curses_raw_impl()
4095 result = PyCursesCheckERR(resizeterm(nlines, ncols), "resizeterm"); in _curses_raw_impl()
4127 _curses_resize_term_impl(PyObject *module, int nlines, int ncols) in _curses_resize_term_impl() argument
4134 result = PyCursesCheckERR(resize_term(nlines, ncols), "resize_term"); in _curses_resize_term_impl()