Lines Matching defs:win
209 "replace($self, win, /)\n"
212 "Change the window associated with the panel to the window win.");
220 PyCursesWindowObject *win);
229 PyCursesWindowObject *win;
239 win = (PyCursesWindowObject *)args[0];
240 return_value = _curses_panel_panel_replace_impl(self, cls, win);
321 "new_panel($module, win, /)\n"
324 "Return a panel object, associating it with the given window win.");
330 _curses_panel_new_panel_impl(PyObject *module, PyCursesWindowObject *win);
336 PyCursesWindowObject *win;
342 win = (PyCursesWindowObject *)arg;
343 return_value = _curses_panel_new_panel_impl(module, win);