Home
last modified time | relevance | path

Searched refs:newwin (Results 1 – 25 of 26) sorted by relevance

12

/external/python/cpython2/Demo/curses/
Dxmas.py456 treescrn = curses.newwin(16, 27, 3, 53)
457 treescrn2 = curses.newwin(16, 27, 3, 53)
458 treescrn3 = curses.newwin(16, 27, 3, 53)
459 treescrn4 = curses.newwin(16, 27, 3, 53)
460 treescrn5 = curses.newwin(16, 27, 3, 53)
461 treescrn6 = curses.newwin(16, 27, 3, 53)
462 treescrn7 = curses.newwin(16, 27, 3, 53)
463 treescrn8 = curses.newwin(16, 27, 3, 53)
465 dotdeer0 = curses.newwin(3, 71, 0, 8)
467 stardeer0 = curses.newwin(4, 56, 0, 8)
[all …]
Dncurses.py33 win = curses.newwin(rows, cols, tly, tlx)
/external/e2fsprogs/ext2ed/
Dwin.c76 title_win=newwin (TITLE_WIN_LINES,COLS,0,0); in init_windows()
77 show_win=newwin (SHOW_WIN_LINES,COLS,TITLE_WIN_LINES,0); in init_windows()
79 mt_win1=newwin (1,COLS,TITLE_WIN_LINES+SHOW_WIN_LINES,0); in init_windows()
80 mt_win2=newwin (1,COLS,LINES-COMMAND_WIN_LINES-1,0); in init_windows()
81 command_win=newwin (COMMAND_WIN_LINES,COLS,LINES-COMMAND_WIN_LINES,0); in init_windows()
/external/python/cpython2/Lib/test/
Dtest_curses.py86 win = curses.newwin(10,10)
87 win = curses.newwin(5,5, 5,5)
88 win2 = curses.newwin(15,15, 5,5)
247 win = curses.newwin(5,5)
248 win = curses.newwin(5,5, 1,1)
300 w = curses.newwin(10, 10)
309 w = curses.newwin(10, 10)
322 w = curses.newwin(10, 10)
332 w = curses.newwin(10, 10)
Dcurses_tests.py23 win = curses.newwin(nlines, ncols, uly, ulx)
/external/python/cpython3/Lib/test/
Dtest_curses.py85 win = curses.newwin(10,10)
86 win = curses.newwin(5,5, 5,5)
87 win2 = curses.newwin(15,15, 5,5)
258 win = curses.newwin(5,5)
259 win = curses.newwin(5,5, 1,1)
315 w = curses.newwin(10, 10)
324 w = curses.newwin(10, 10)
337 w = curses.newwin(10, 10)
347 w = curses.newwin(10, 10)
Dcurses_tests.py23 win = curses.newwin(nlines, ncols, uly, ulx)
/external/libiio/src/examples/
Diio-monitor.c343 left = newwin(row, col / 2, 0, 0); in main()
344 right = newwin(row, col / 2, 0, col / 2); in main()
/external/toybox/kconfig/lxdialog/
Dyesno.c59 dialog = newwin(height, width, y, x); in dialog_yesno()
Dinputbox.c69 dialog = newwin(height, width, y, x); in dialog_inputbox()
Dtextbox.c91 dialog = newwin(height, width, y, x); in dialog_textbox()
Dchecklist.c142 dialog = newwin(height, width, y, x); in dialog_checklist()
Dmenubox.c209 dialog = newwin(height, width, y, x); in dialog_menu()
/external/python/cpython2/Lib/curses/
Dtextpad.py195 win = curses.newwin(nlines, ncols, uly, ulx)
/external/python/cpython3/Lib/curses/
Dtextpad.py195 win = curses.newwin(nlines, ncols, uly, ulx)
/external/python/cffi/demo/
D_curses.py876 def newwin(nlines, ncols, begin_y=None, begin_x=None): function
883 return Window(_check_NULL(lib.newwin(nlines, ncols, begin_y, begin_x)))
/external/llvm-project/lldb/utils/lui/
Dcui.py17 self.win = curses.newwin(h, w, y, x)
/external/python/cpython3/Doc/howto/
Dcurses.rst178 :func:`~curses.newwin` function creates a new window of a given size,
183 win = curses.newwin(height, width, begin_y, begin_x)
506 editwin = curses.newwin(5,30, 2,1)
/external/python/cpython2/Doc/howto/
Dcurses.rst143 to redraw or clear them separately. The :func:`newwin` function creates a new
148 win = curses.newwin(height, width, begin_y, begin_x)
/external/mesa3d/src/freedreno/perfcntrs/
Dfdperf.c762 dialog = newwin(dh, dw, (h-dh)/2, (w-dw)/2); in counter_dialog()
/external/tensorflow/tensorflow/python/debug/cli/
Dcurses_ui.py465 self._command_window = curses.newwin(
/external/python/cpython2/Doc/library/
Dcurses.rst383 .. function:: newwin(nlines, ncols)
384 newwin(nlines, ncols, begin_y, begin_x)
648 Window objects, as returned by :func:`initscr` and :func:`newwin` above, have
/external/python/cpython3/Doc/library/
Dcurses.rst391 .. function:: newwin(nlines, ncols)
392 newwin(nlines, ncols, begin_y, begin_x)
703 Window objects, as returned by :func:`initscr` and :func:`newwin` above, have
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp360 Reset(::newwin(bounds.size.height, bounds.size.width, bounds.origin.y, in Window()
566 : ::newwin(bounds.size.height, bounds.size.width, in CreateSubWindow()
/external/python/cpython3/Modules/
D_cursesmodule.c3603 win = newwin(nlines,ncols,begin_y,begin_x); in _curses_newwin_impl()

12