/external/python/cpython2/Doc/library/ |
D | msvcrt.rst | 89 Return true if a keypress is waiting to be read. 94 Read a keypress and return the resulting character. Nothing is echoed to the 95 console. This call will block if a keypress is not already available, but will 98 return the keycode. The :kbd:`Control-C` keypress cannot be read with this 111 Similar to :func:`getch`, but the keypress will be echoed if it represents a
|
/external/python/cpython3/Doc/library/ |
D | msvcrt.rst | 101 Return ``True`` if a keypress is waiting to be read. 106 Read a keypress and return the resulting character as a byte string. 107 Nothing is echoed to the console. This call will block if a keypress 111 The :kbd:`Control-C` keypress cannot be read with this function. 121 Similar to :func:`getch`, but the keypress will be echoed if it represents a
|
/external/autotest/server/site_tests/firmware_FAFTSetup/ |
D | firmware_FAFTSetup.py | 68 def keypress(): function 73 return self.base_keyboard_checker(keypress)
|
/external/autotest/server/site_tests/firmware_BaseECKeyboard/ |
D | firmware_BaseECKeyboard.py | 82 def keypress(): # pylint:disable=missing-docstring function 86 return self._base_keyboard_checker(keypress)
|
/external/catch2/include/internal/ |
D | catch_commandline.cpp | 92 auto const setWaitForKeypress = [&]( std::string const& keypress ) { in makeCommandLineParser() argument 93 auto keypressLc = toLower( keypress ); in makeCommandLineParser() 103 …or( "keypress argument must be one of: never, start, exit or both. '" + keypress + "' not recognis… in makeCommandLineParser()
|
/external/webrtc/rtc_tools/unpack_aecdump/ |
D | unpack.cc | 408 bool keypress = msg.keypress(); in do_main() local 410 fprintf(keypress_file, "%d\n", keypress); in do_main() 412 WriteData(&keypress, sizeof(keypress), keypress_file, in do_main()
|
/external/mesa3d/bin/pick/ |
D | ui.py | 51 def keypress(self, size: int, key: str) -> typing.Optional[str]: member in RootWidget 59 return super().keypress(size, key) 92 def keypress(self, size: int, key: str) -> typing.Optional[str]: member in CommitWidget
|
/external/webrtc/modules/audio_processing/include/ |
D | aec_dump.h | 71 bool keypress; member
|
/external/webrtc/modules/audio_processing/aec_dump/ |
D | capture_stream_info.cc | 69 stream->set_keypress(state.keypress); in AddAudioProcessingState()
|
/external/libkmsxx/py/tests/ |
D | kmsmodeview.py | 72 def keypress(self, size, key): member in MyIntEdit 78 return super().keypress(size, key)
|
/external/webrtc/modules/audio_processing/ |
D | debug.proto | 39 optional bool keypress = 6; field
|
D | audio_processing_impl.cc | 2018 audio_proc_state.keypress = capture_.key_pressed; in RecordAudioProcessingState()
|
/external/webrtc/modules/audio_processing/test/ |
D | debug_dump_replayer.cc | 127 apm_->set_stream_key_pressed(msg.keypress()); in OnStreamEvent()
|
D | aec_dump_based_simulator.cc | 155 ap_->set_stream_key_pressed(msg.keypress()); in PrepareProcessStreamCall()
|
/external/skqp/docs/ |
D | catalogTrailer.txt | 196 window.addEventListener('keypress', doKeyPress, true);
|
/external/catch2/docs/ |
D | command-line.md | 63 <a href="#wait-for-keypress"> ` --wait-for-keypress`</a><br /> 272 <a id="wait-for-keypress"></a> 274 <pre>--wait-for-keypress <never|start|exit|both></pre>
|
D | release-notes.md | 44 * `--wait-for-keypress` now also accepts `never` as an option (#1866) 796 * Added "wait-for-keypress" option
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/ |
D | bootstrap.js | 1712 .on('keypress', $.proxy(this.keypress, this)) 1716 this.$element.on('keydown', $.proxy(this.keypress, this)) 1749 , keypress: function (e) {
|
/external/okhttp/website/static/ |
D | bootstrap.min.js | 6 …keypress,this)).on("keyup",e.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element…
|
/external/python/cpython3/Doc/faq/ |
D | windows.rst | 279 How do I check for a keypress without blocking?
|
/external/python/cpython2/Doc/faq/ |
D | windows.rst | 302 How do I check for a keypress without blocking?
|
/external/catch2/projects/SelfTest/Baselines/ |
D | console.sw.approved.txt | 7840 wait-for-keypress 7847 CHECK( cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) ) 7859 wait-for-keypress 7866 CHECK( cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) ) 7878 wait-for-keypress 7885 CHECK( cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) ) 7897 wait-for-keypress 7904 CHECK( cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) ) 7916 wait-for-keypress 7930 "keypress argument must be one of: never, start, exit or both. 'sometimes'
|
D | compact.sw.approved.txt | 1091 CmdLine.tests.cpp:<line number>: passed: cli.parse({"test", "--wait-for-keypress", std::get<0>(inpu… 1093 CmdLine.tests.cpp:<line number>: passed: cli.parse({"test", "--wait-for-keypress", std::get<0>(inpu… 1095 CmdLine.tests.cpp:<line number>: passed: cli.parse({"test", "--wait-for-keypress", std::get<0>(inpu… 1097 CmdLine.tests.cpp:<line number>: passed: cli.parse({"test", "--wait-for-keypress", std::get<0>(inpu… 1100 …sed: result.errorMessage(), Contains("never") && Contains("both") for: "keypress argument must be …
|
/external/python/cpython2/Doc/howto/ |
D | curses.rst | 169 of activity, and then pause waiting for a keypress or some other action on the
|
/external/python/cpython3/Doc/howto/ |
D | curses.rst | 214 of activity, and then pause waiting for a keypress or some other action on the
|