/third_party/cef/libcef_dll/cpptoc/ |
D | menu_model_cpptoc.cc | 880 int key_code, in menu_model_set_accelerator() argument 894 command_id, key_code, shift_pressed ? true : false, in menu_model_set_accelerator() 903 int key_code, in menu_model_set_accelerator_at() argument 917 index, key_code, shift_pressed ? true : false, in menu_model_set_accelerator_at() 960 int* key_code, in menu_model_get_accelerator() argument 972 DCHECK(key_code); in menu_model_get_accelerator() 973 if (!key_code) in menu_model_get_accelerator() 989 int key_codeVal = key_code ? *key_code : 0; in menu_model_get_accelerator() 1003 if (key_code) in menu_model_get_accelerator() 1004 *key_code = key_codeVal; in menu_model_get_accelerator() [all …]
|
/third_party/cef/libcef/browser/ |
D | simple_menu_model_impl.cc | 391 int key_code, in SetAccelerator() argument 408 ui::Accelerator(static_cast<ui::KeyboardCode>(key_code), modifiers)); in SetAccelerator() 413 int key_code, in SetAcceleratorAt() argument 417 return SetAccelerator(GetCommandIdAt(index), key_code, shift_pressed, in SetAcceleratorAt() 433 int& key_code, in GetAccelerator() argument 437 return GetAcceleratorAt(GetIndexOf(command_id), key_code, shift_pressed, in GetAccelerator() 442 int& key_code, in GetAcceleratorAt() argument 451 key_code = accel.key_code(); in GetAcceleratorAt()
|
D | simple_menu_model_impl.h | 104 int key_code, 109 int key_code, 116 int& key_code, 121 int& key_code,
|
D | menu_model_impl.cc | 82 int key_code = 0; in GetAcceleratorAt() local 86 if (impl_->GetAcceleratorAt(index, key_code, shift_pressed, ctrl_pressed, in GetAcceleratorAt() 97 ui::Accelerator(static_cast<ui::KeyboardCode>(key_code), modifiers); in GetAcceleratorAt() 602 int key_code, in SetAccelerator() argument 606 return SetAcceleratorAt(GetIndexOf(command_id), key_code, shift_pressed, in SetAccelerator() 611 int key_code, in SetAcceleratorAt() argument 621 item.key_code_ = key_code; in SetAcceleratorAt() 653 int& key_code, in GetAccelerator() argument 657 return GetAcceleratorAt(GetIndexOf(command_id), key_code, shift_pressed, in GetAccelerator() 662 int& key_code, in GetAcceleratorAt() argument [all …]
|
D | menu_model_impl.h | 123 int key_code, 128 int key_code, 135 int& key_code, 140 int& key_code,
|
/third_party/cef/libcef_dll/ctocpp/ |
D | menu_model_ctocpp.h | 92 int key_code, 97 int key_code, 104 int& key_code, 109 int& key_code,
|
D | menu_model_ctocpp.cc | 847 int key_code, in SetAccelerator() argument 861 _struct, command_id, key_code, shift_pressed, ctrl_pressed, alt_pressed); in SetAccelerator() 869 int key_code, in SetAcceleratorAt() argument 883 _struct, index, key_code, shift_pressed, ctrl_pressed, alt_pressed); in SetAcceleratorAt() 925 int& key_code, in GetAccelerator() argument 945 int _retval = _struct->get_accelerator(_struct, command_id, &key_code, in GetAccelerator() 962 int& key_code, in GetAcceleratorAt() argument 983 _struct->get_accelerator_at(_struct, index, &key_code, &shift_pressedInt, in GetAcceleratorAt()
|
/third_party/cef/include/ |
D | cef_menu_model.h | 361 int key_code, 372 int key_code, 397 int& key_code, 408 int& key_code,
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/mir/ |
D | SDL_mirevents.c | 43 HandleKeyText(int32_t key_code) in HandleKeyText() argument 48 size = MIR_xkb_keysym_to_utf8(key_code, text, sizeof text); in HandleKeyText() 63 xkb_keysym_t key_code; in HandleKeyEvent() local 71 key_code = MIR_mir_keyboard_event_key_code(key_event); in HandleKeyEvent() 84 HandleKeyText(key_code); in HandleKeyEvent()
|
/third_party/cef/include/capi/ |
D | cef_menu_model_capi.h | 371 int key_code, 382 int key_code, 407 int* key_code, 418 int* key_code,
|
/third_party/cef/libcef/browser/native/ |
D | browser_platform_delegate_native_linux.cc | 279 ui::KeyboardCode key_code = in TranslateUiKeyEvent() local 284 key_code, !!(key_event.modifiers & EVENTFLAG_SHIFT_DOWN)); in TranslateUiKeyEvent() 289 return ui::KeyEvent(character, key_code, dom_code, flags, time_stamp); in TranslateUiKeyEvent() 306 return ui::KeyEvent(type, key_code, dom_code, flags, dom_key, time_stamp); in TranslateUiKeyEvent()
|
D | browser_platform_delegate_native_win.cc | 465 ui::KeyboardCode key_code = in TranslateUiKeyEvent() local 472 return ui::KeyEvent(key_event.windows_key_code /* character */, key_code, in TranslateUiKeyEvent() 490 ui::PlatformKeyMap::DomKeyFromKeyboardCode(key_code, &flags); in TranslateUiKeyEvent() 491 return ui::KeyEvent(type, key_code, dom_code, flags, dom_key, time_stamp); in TranslateUiKeyEvent()
|
/third_party/cef/include/views/ |
D | cef_window.h | 303 virtual void SendKeyPress(int key_code, uint32 event_flags) = 0; 334 int key_code,
|
/third_party/cef/include/capi/views/ |
D | cef_window_capi.h | 288 int key_code, 322 int key_code,
|
/third_party/cef/libcef/browser/views/ |
D | window_impl.h | 76 void SendKeyPress(int key_code, uint32 event_flags) override; 82 int key_code,
|
D | window_impl.cc | 534 void CefWindowImpl::SendKeyPress(int key_code, uint32 event_flags) { in SendKeyPress() argument 543 static_cast<ui::KeyboardCode>(key_code), in SendKeyPress() 588 int key_code, in SetAccelerator() argument 607 ui::Accelerator accelerator(static_cast<ui::KeyboardCode>(key_code), in SetAccelerator()
|
/third_party/cef/libcef_dll/ctocpp/views/ |
D | window_ctocpp.h | 73 void SendKeyPress(int key_code, uint32 event_flags) override; 79 int key_code,
|
D | window_ctocpp.cc | 556 void CefWindowCToCpp::SendKeyPress(int key_code, uint32 event_flags) { in SendKeyPress() argument 566 _struct->send_key_press(_struct, key_code, event_flags); in SendKeyPress() 601 int key_code, in SetAccelerator() argument 614 _struct->set_accelerator(_struct, command_id, key_code, shift_pressed, in SetAccelerator()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/ |
D | SDL_DirectFB_events.c | 588 if (kbd->map && evt->key_code >= kbd->map_adjust && in DirectFB_TranslateKey() 589 evt->key_code < kbd->map_size + kbd->map_adjust) in DirectFB_TranslateKey() 590 keysym->scancode = kbd->map[evt->key_code - kbd->map_adjust]; in DirectFB_TranslateKey() 619 if (kbd->map && evt->key_code >= kbd->map_adjust && in DirectFB_TranslateKeyInputEvent() 620 evt->key_code < kbd->map_size + kbd->map_adjust) in DirectFB_TranslateKeyInputEvent() 621 keysym->scancode = kbd->map[evt->key_code - kbd->map_adjust]; in DirectFB_TranslateKeyInputEvent()
|
/third_party/cef/tests/ceftests/ |
D | os_rendering_unittest.cc | 1440 int key_code) { in SendKeyEvent() argument 1446 BYTE VkCode = LOBYTE(VkKeyScanA(key_code)); in SendKeyEvent() 1457 event.character = event.unmodified_character = key_code; in SendKeyEvent() 1460 event.windows_key_code = key_code; in SendKeyEvent() 1469 event.windows_key_code = key_code; in SendKeyEvent()
|
/third_party/cef/libcef_dll/cpptoc/views/ |
D | window_cpptoc.cc | 562 int key_code, in window_send_key_press() argument 573 CefWindowCppToC::Get(self)->SendKeyPress(key_code, event_flags); in window_send_key_press() 610 int key_code, in window_set_accelerator() argument 624 command_id, key_code, shift_pressed ? true : false, in window_set_accelerator()
|
/third_party/flutter/glfw/src/ |
D | mir_window.c | 145 const int key_code = mir_keyboard_event_key_code (key_event); in handleKeyEvent() local 150 const long text = _glfwKeySym2Unicode(key_code); in handleKeyEvent()
|
/third_party/cef/tests/cefclient/browser/ |
D | browser_window_osr_gtk.cc | 806 KeyboardCode GetWindowsKeyCodeWithoutLocation(KeyboardCode key_code) { in GetWindowsKeyCodeWithoutLocation() argument 807 switch (key_code) { in GetWindowsKeyCodeWithoutLocation() 818 return key_code; in GetWindowsKeyCodeWithoutLocation()
|
/third_party/gstreamer/gstplugins_bad/ext/wpe/ |
D | gstwpevideosrc.cpp | 574 wpe_event.key_code = keysym; in gst_wpe_video_src_event()
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 149635 KeyboardCode key_code; 149636 if (!DomCodeToUsLayoutDomKey(dom_code, event_flags, &dom_key, &key_code)) { 149642 return ui::KeyEvent(*event_type, key_code, dom_code, event_flags, dom_key,
|