/external/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/ |
D | PpScanner.cpp | 466 ch = getch(); in scan() 470 ch = getch(); in scan() 497 ch = getch(); in scan() 503 ch = getch(); in scan() 519 ch = getch(); in scan() 527 ch = getch(); in scan() 555 ch = getch(); in scan() 567 int nextCh = getch(); in scan() 576 nextCh = getch(); in scan() 649 ch = getch(); in scan() [all …]
|
D | PpContext.h | 213 virtual int getch() = 0; 320 int getChar() { return inputStack.back()->getch(); } in getChar() 344 virtual int getch() override { assert(0); return EndOfInput; } in getch() function 370 virtual int getch() override { assert(0); return EndOfInput; } in getch() function 379 virtual int getch() override { assert(0); return EndOfInput; } in getch() function 423 virtual int getch() override { assert(0); return EndOfInput; } in getch() function 435 virtual int getch() override { assert(0); return EndOfInput; } in getch() function 453 int getch() override in getch() function 559 int getch() override { return stringInput.getch(); } in getch() function
|
/external/curl/src/ |
D | tool_getpass.c | 104 # define getch() getchar() macro 115 buffer[i] = (char)getch(); in getpass_r() 153 buffer[i++] = getch(); in getpass_r()
|
/external/python/cpython3/Doc/library/ |
D | msvcrt.rst | 98 .. function:: getch() 110 Wide char variant of :func:`getch`, returning a Unicode value. 115 Similar to :func:`getch`, but the keypress will be echoed if it represents a 137 it will be the next character read by :func:`getch` or :func:`getche`.
|
/external/python/cpython2/Doc/library/ |
D | msvcrt.rst | 92 .. function:: getch() 104 Wide char variant of :func:`getch`, returning a Unicode value. 111 Similar to :func:`getch`, but the keypress will be echoed if it represents a 137 be the next character read by :func:`getch` or :func:`getche`.
|
/external/e2fsprogs/include/nonunix/ |
D | unistd.h | 32 #define getch _getch macro
|
/external/python/cpython2/Demo/curses/ |
D | life.py | 166 c = stdscr.getch() # Get a keystroke 180 c = stdscr.getch()
|
D | rain.py | 84 ch = stdscr.getch()
|
D | tclock.py | 139 ch = stdscr.getch()
|
D | ncurses.py | 13 return win.getch()
|
/external/python/cpython2/Parser/ |
D | intrcheck.c | 83 if (getch() == '\003') in PyOS_InterruptOccurred()
|
/external/python/cpython3/Lib/test/ |
D | curses_tests.py | 33 stdscr.getch()
|
/external/python/cpython2/Lib/test/ |
D | curses_tests.py | 33 stdscr.getch()
|
/external/python/cpython3/Tools/demo/ |
D | life.py | 197 c = stdscr.getch() # Get a keystroke 211 c = stdscr.getch()
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | common_util.py | 44 def getch(): function
|
/external/jline/src/src/main/native/ |
D | jline_WindowsTerminal.c | 38 return getch (); in Java_jline_WindowsTerminal_readByte()
|
/external/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()
|
/external/gptfdisk/ |
D | gptcurses.cc | 645 inputKey = getch(); in AcceptInput() 793 getch(); in PromptToContinue() 804 getch(); in Report()
|
/external/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
|
/external/python/cpython2/Lib/ |
D | getpass.py | 98 c = msvcrt.getch()
|
/external/python/cpython2/Doc/howto/ |
D | curses.rst | 364 The most common way to get input to a window is to use its :meth:`getch` method. 365 :meth:`getch` pauses and waits for the user to hit a key, displaying it if 370 ``nodelay(1)``, :meth:`getch` for the window becomes non-blocking and returns 373 :meth:`getch`; if no input becomes available within a specified 376 The :meth:`getch` method returns an integer; if it's between 0 and 255, it 384 c = stdscr.getch()
|
/external/bcc/tools/ |
D | cachetop.py | 178 s = stdscr.getch()
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | p2p-nfc.py | 377 def getch(): function 496 res = getch()
|
/external/python/cpython3/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()
|
/external/e2fsprogs/ext2ed/ |
D | main.c | 543 refresh_command_win ();getch ();werase (command_win); in internal_error()
|