/external/autotest/client/profilers/powertop/src/ |
D | display.c | 98 title_bar_window = subwin(stdscr, 1, maxx, 0, 0); in setup_windows() 99 cstate_window = subwin(stdscr, 7, maxx, 2, 0); in setup_windows() 100 wakeup_window = subwin(stdscr, 1, maxx, 9, 0); in setup_windows() 101 battery_power_window = subwin(stdscr, 2, maxx, 10, 0); in setup_windows() 102 timerstat_window = subwin(stdscr, maxy-16, maxx, 12, 0); in setup_windows() 105 suggestion_window = subwin(stdscr, 3, maxx, maxy-4, 0); in setup_windows() 106 status_bar_window = subwin(stdscr, 1, maxx, maxy-1, 0); in setup_windows()
|
/external/python/cpython2/Demo/curses/ |
D | life.py | 156 subwin = stdscr.subwin(stdscr_y-3, stdscr_x, 0, 0) 157 board = LifeBoard(subwin, char=ord('*'))
|
/external/python/cpython3/Tools/demo/ |
D | life.py | 187 subwin = stdscr.subwin(stdscr_y - 3, stdscr_x, 0, 0) 188 board = LifeBoard(subwin, char=ord('*'))
|
/external/python/cpython2/Lib/test/ |
D | test_curses.py | 184 win3 = stdscr.subwin(10,10) 185 win3 = stdscr.subwin(10,10, 5,5)
|
/external/python/cpython3/Lib/test/ |
D | test_curses.py | 142 win2 = win.subwin(3, 7) 147 win2 = win.subwin(5, 10, 3, 7) 185 win = stdscr.subwin(10, 15, 2, 5) 217 win = stdscr.subwin(10, 15, 2, 5) 218 win2 = win.subwin(5, 10, 3, 7)
|
/external/toybox/kconfig/lxdialog/ |
D | textbox.c | 97 box = subwin(dialog, boxh, boxw, y + 1, x + 1); in dialog_textbox()
|
D | checklist.c | 164 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()
|
D | menubox.c | 232 menu = subwin(dialog, menu_height, menu_width, in dialog_menu()
|
/external/python/cffi/demo/ |
D | _curses.py | 572 def subwin(self, *args): member in Window 585 win = lib.subwin(self._win, nlines, ncols, begin_y, begin_x)
|
/external/python/cpython3/Doc/library/ |
D | curses.rst | 900 :meth:`subwin`, except that *begin_y* and *begin_x* are relative to the origin 926 is created, for example with :meth:`window.subwin`. By default, the locale 1257 .. method:: window.subwin(begin_y, begin_x) 1258 window.subwin(nlines, ncols, begin_y, begin_x)
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 830 :meth:`subwin`, except that *begin_y* and *begin_x* are relative to the origin 1161 .. method:: window.subwin(begin_y, begin_x) 1162 window.subwin(nlines, ncols, begin_y, begin_x)
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 2328 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in _curses_window_subwin_impl()
|
/external/python/cpython2/Modules/ |
D | _cursesmodule.c | 1478 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin()
|