/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
D | PpScanner.cpp | 486 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 …]
|
D | PpContext.h | 214 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
|
D | Pp.cpp | 1025 int ch = inputStack.back()->getch(); in scanHeaderName()
|
/third_party/alsa-lib/src/ |
D | input.c | 42 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/ |
D | msvcrt.rst | 104 .. 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`.
|
D | curses.rst | 217 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/ |
D | tool_getpass.c | 111 buffer[i] = (char)getch(); in getpass_r() 147 buffer[i++] = getch(); in getpass_r()
|
/third_party/e2fsprogs/include/nonunix/ |
D | unistd.h | 32 #define getch _getch macro
|
/third_party/python/Lib/test/ |
D | curses_tests.py | 33 stdscr.getch()
|
D | test_curses.py | 341 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/ |
D | life.py | 197 c = stdscr.getch() # Get a keystroke 211 c = stdscr.getch()
|
/third_party/icu/icu4c/source/test/perf/ustrperf/ |
D | stringperf.cpp | 230 return new StringPerfFunction(getch, filelines_, numLines, uselen); in TestGetch() 232 return new StringPerfFunction(getch, StrBuffer, StrBufferLen, uselen); in TestGetch()
|
D | stringperf.h | 432 inline void getch(const UChar* src,int32_t srcLen, UnicodeString s0) in getch() function
|
/third_party/libpng/contrib/gregbook/ |
D | wpng.c | 113 # 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/ |
D | wpng.c | 113 # ifndef getch 114 # define getch() _read_kbd(0, 1, 0) /* need getche() */ macro 119 # define getch() getkey() /* GRR: need getche() */ macro
|
/third_party/gptfdisk/ |
D | gptcurses.cc | 659 inputKey = getch(); in AcceptInput() 807 getch(); in PromptToContinue() 818 getch(); in Report()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
D | p2p-nfc.py | 377 def getch(): function 496 res = getch()
|
D | dpp-nfc.py | 738 def getch(): function 903 res = getch()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/ |
D | p2p-nfc.py | 377 def getch(): function 496 res = getch()
|
/third_party/python/Doc/howto/ |
D | curses.rst | 440 * :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/ |
D | main.c | 545 refresh_command_win ();getch ();werase (command_win); in internal_error()
|
/third_party/python/Lib/curses/ |
D | textpad.py | 180 ch = self.win.getch()
|
/third_party/openssl/crypto/ui/ |
D | ui_openssl.c | 697 i = getch(); in noecho_fgets()
|
/third_party/e2fsprogs/e2fsck/ |
D | util.c | 25 #define read_a_char() getch()
|
/third_party/python/Doc/faq/ |
D | windows.rst | 281 present, and ``getch()`` which gets one character without echoing it.
|