Home
last modified time | relevance | path

Searched refs:getch (Results 1 – 25 of 28) sorted by relevance

12

/third_party/glslang/glslang/MachineIndependent/preprocessor/
DPpScanner.cpp486 ch = getch(); in scan()
490 ch = getch(); in scan()
517 ch = getch(); in scan()
523 ch = getch(); in scan()
539 ch = getch(); in scan()
547 ch = getch(); in scan()
575 ch = getch(); in scan()
588 int nextCh = getch(); in scan()
596 nextCh = getch(); in scan()
667 ch = getch(); in scan()
[all …]
DPpContext.h214 virtual int getch() = 0;
377 int getChar() { return inputStack.back()->getch(); } in getChar()
405 virtual int getch() override { assert(0); return EndOfInput; } in getch() function
432 virtual int getch() override { assert(0); return EndOfInput; } in getch() function
441 virtual int getch() override { assert(0); return EndOfInput; } in getch() function
488 virtual int getch() override { assert(0); return EndOfInput; } in getch() function
501 virtual int getch() override { assert(0); return EndOfInput; } in getch() function
519 int getch() override in getch() function
625 int getch() override { return stringInput.getch(); } in getch() function
DPp.cpp1025 int ch = inputStack.back()->getch(); in scanHeaderName()
/third_party/alsa-lib/src/
Dinput.c42 int (*getch)(snd_input_t *input); member
106 return input->ops->getch(input); in snd_input_getc()
164 .getch = snd_input_stdio_getc,
290 .getch = snd_input_buffer_getc,
/third_party/python/Doc/library/
Dmsvcrt.rst104 .. function:: getch()
116 Wide char variant of :func:`getch`, returning a Unicode value.
121 Similar to :func:`getch`, but the keypress will be echoed if it represents a
143 it will be the next character read by :func:`getch` or :func:`getche`.
Dcurses.rst217 After :meth:`~window.getch` returns :const:`KEY_MOUSE` to signal a mouse event, this
650 Push *ch* so the next :meth:`~window.getch` will return it.
654 Only one *ch* can be pushed before :meth:`!getch` is called.
947 .. method:: window.getch([y, x])
966 Get a character, returning a string instead of an integer, as :meth:`getch`
1131 If *flag* is ``True``, :meth:`getch` will be non-blocking.
1290 *delay* is zero, then non-blocking read is used, and :meth:`getch` will
1292 :meth:`getch` will block for *delay* milliseconds, and return ``-1`` if there is
1330 Some curses routines that return an integer, such as :meth:`~window.getch`, return
/third_party/curl/src/
Dtool_getpass.c111 buffer[i] = (char)getch(); in getpass_r()
147 buffer[i++] = getch(); in getpass_r()
/third_party/e2fsprogs/include/nonunix/
Dunistd.h32 #define getch _getch macro
/third_party/python/Lib/test/
Dcurses_tests.py33 stdscr.getch()
Dtest_curses.py341 self.assertEqual(win.getch(3, 1), b's'[0])
343 self.assertEqual(win.getch(3, 4), b'p'[0])
345 self.assertEqual(win.getch(), b'a'[0])
347 self.assertEqual(win.getch(), b'm'[0])
348 self.assertEqual(win.getch(), b'\n'[0])
/third_party/python/Tools/demo/
Dlife.py197 c = stdscr.getch() # Get a keystroke
211 c = stdscr.getch()
/third_party/icu/icu4c/source/test/perf/ustrperf/
Dstringperf.cpp230 return new StringPerfFunction(getch, filelines_, numLines, uselen); in TestGetch()
232 return new StringPerfFunction(getch, StrBuffer, StrBufferLen, uselen); in TestGetch()
Dstringperf.h432 inline void getch(const UChar* src,int32_t srcLen, UnicodeString s0) in getch() function
/third_party/libpng/contrib/gregbook/
Dwpng.c113 # ifndef getch
114 # define getch() _read_kbd(0, 1, 0) /* need getche() */ macro
119 # define getch() getkey() /* GRR: need getche() */ macro
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Dwpng.c113 # ifndef getch
114 # define getch() _read_kbd(0, 1, 0) /* need getche() */ macro
119 # define getch() getkey() /* GRR: need getche() */ macro
/third_party/gptfdisk/
Dgptcurses.cc659 inputKey = getch(); in AcceptInput()
807 getch(); in PromptToContinue()
818 getch(); in Report()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/
Dp2p-nfc.py377 def getch(): function
496 res = getch()
Ddpp-nfc.py738 def getch(): function
903 res = getch()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/
Dp2p-nfc.py377 def getch(): function
496 res = getch()
/third_party/python/Doc/howto/
Dcurses.rst440 * :meth:`~curses.window.getch` refreshes the screen and then waits for
452 :meth:`getch` and :meth:`getkey` for the window become
453 non-blocking. To signal that no input is ready, :meth:`getch` returns
456 effect) set a timer on each :meth:`getch`; if no input becomes
460 The :meth:`getch` method returns an integer; if it's between 0 and 255, it
468 c = stdscr.getch()
/third_party/e2fsprogs/ext2ed/
Dmain.c545 refresh_command_win ();getch ();werase (command_win); in internal_error()
/third_party/python/Lib/curses/
Dtextpad.py180 ch = self.win.getch()
/third_party/openssl/crypto/ui/
Dui_openssl.c697 i = getch(); in noecho_fgets()
/third_party/e2fsprogs/e2fsck/
Dutil.c25 #define read_a_char() getch()
/third_party/python/Doc/faq/
Dwindows.rst281 present, and ``getch()`` which gets one character without echoing it.

12