HomeSort by relevance Sort by last modified time
    Searched refs:stdscr (Results 1 - 17 of 17) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 33 def window_funcs(stdscr):
39 for meth in [stdscr.addch, stdscr.addstr]:
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
45 stdscr.clrtoeol, stdscr.cursyncup, stdscr.delch,
46 stdscr.deleteln, stdscr.erase, stdscr.getbegyx
    [all...]
curses_tests.py 13 def test_textpad(stdscr, insert_mode=False):
21 stdscr.addstr(uly-3, ulx, "Use Ctrl-G to end editing (%s)." % mode)
22 stdscr.addstr(uly-2, ulx, "Be sure to try typing in the lower-right corner.")
24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
25 stdscr.refresh()
29 stdscr.addstr(uly+ncols+2, 0, "Text entered in the box\n")
30 stdscr.addstr(repr(contents))
31 stdscr.addstr('\n')
32 stdscr.addstr('Press any key')
33 stdscr.getch(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 33 def window_funcs(stdscr):
39 for meth in [stdscr.addch, stdscr.addstr]:
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
45 stdscr.clrtoeol, stdscr.cursyncup, stdscr.delch,
46 stdscr.deleteln, stdscr.erase, stdscr.getbegyx
    [all...]
curses_tests.py 13 def test_textpad(stdscr, insert_mode=False):
21 stdscr.addstr(uly-3, ulx, "Use Ctrl-G to end editing (%s)." % mode)
22 stdscr.addstr(uly-2, ulx, "Be sure to try typing in the lower-right corner.")
24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
25 stdscr.refresh()
29 stdscr.addstr(uly+ncols+2, 0, "Text entered in the box\n")
30 stdscr.addstr(repr(contents))
31 stdscr.addstr('\n')
32 stdscr.addstr('Press any key')
33 stdscr.getch(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
wrapper.py 15 The callable object 'func' is then passed the main window 'stdscr'
22 stdscr = curses.initscr()
32 stdscr.keypad(1)
43 return func(stdscr, *args, **kwds)
46 if 'stdscr' in locals():
47 stdscr.keypad(0)
__init__.py 34 stdscr = _curses.initscr()
39 return stdscr
textpad.py 178 def test_editbox(stdscr):
181 stdscr.addstr(uly-2, ulx, "Use Ctrl-G to end editing.")
183 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
184 stdscr.refresh()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
wrapper.py 15 The callable object 'func' is then passed the main window 'stdscr'
22 stdscr = curses.initscr()
32 stdscr.keypad(1)
43 return func(stdscr, *args, **kwds)
46 if 'stdscr' in locals():
47 stdscr.keypad(0)
__init__.py 34 stdscr = _curses.initscr()
39 return stdscr
textpad.py 178 def test_editbox(stdscr):
181 stdscr.addstr(uly-2, ulx, "Use Ctrl-G to end editing.")
183 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
184 stdscr.refresh()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
curses.h 1314 #define stdscr macro
    [all...]
ncurses.h 1314 #define stdscr macro
    [all...]
cursesp.h 112 : NCursesWindow(::stdscr), p(0)
117 // ::stdscr window
160 // N.B.: The panel associated with ::stdscr is always on the bottom. So
161 // actually bottom() makes the panel the first above ::stdscr.
249 // This creates an user panel associated with the ::stdscr and user data
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
curses.h 1314 #define stdscr macro
    [all...]
ncurses.h 1314 #define stdscr macro
    [all...]
cursesp.h 112 : NCursesWindow(::stdscr), p(0)
117 // ::stdscr window
160 // N.B.: The panel associated with ::stdscr is always on the bottom. So
161 // actually bottom() makes the panel the first above ::stdscr.
249 // This creates an user panel associated with the ::stdscr and user data
  /external/qemu/ui/
curses.c 226 wnoutrefresh(stdscr);
294 initscr(); noecho(); intrflush(stdscr, FALSE);
295 nodelay(stdscr, TRUE); nonl(); keypad(stdscr, TRUE);
296 start_color(); raw(); scrollok(stdscr, FALSE);

Completed in 306 milliseconds