Home
last modified time | relevance | path

Searched refs:key_code (Results 1 – 25 of 26) sorted by relevance

12

/third_party/cef/libcef_dll/cpptoc/
Dmenu_model_cpptoc.cc880 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/
Dsimple_menu_model_impl.cc391 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()
Dsimple_menu_model_impl.h104 int key_code,
109 int key_code,
116 int& key_code,
121 int& key_code,
Dmenu_model_impl.cc82 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 …]
Dmenu_model_impl.h123 int key_code,
128 int key_code,
135 int& key_code,
140 int& key_code,
/third_party/cef/libcef_dll/ctocpp/
Dmenu_model_ctocpp.h92 int key_code,
97 int key_code,
104 int& key_code,
109 int& key_code,
Dmenu_model_ctocpp.cc847 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/
Dcef_menu_model.h361 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/
DSDL_mirevents.c43 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/
Dcef_menu_model_capi.h371 int key_code,
382 int key_code,
407 int* key_code,
418 int* key_code,
/third_party/cef/libcef/browser/native/
Dbrowser_platform_delegate_native_linux.cc279 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()
Dbrowser_platform_delegate_native_win.cc465 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/
Dcef_window.h303 virtual void SendKeyPress(int key_code, uint32 event_flags) = 0;
334 int key_code,
/third_party/cef/include/capi/views/
Dcef_window_capi.h288 int key_code,
322 int key_code,
/third_party/cef/libcef/browser/views/
Dwindow_impl.h76 void SendKeyPress(int key_code, uint32 event_flags) override;
82 int key_code,
Dwindow_impl.cc534 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/
Dwindow_ctocpp.h73 void SendKeyPress(int key_code, uint32 event_flags) override;
79 int key_code,
Dwindow_ctocpp.cc556 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/
DSDL_DirectFB_events.c588 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/
Dos_rendering_unittest.cc1440 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/
Dwindow_cpptoc.cc562 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/
Dmir_window.c145 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/
Dbrowser_window_osr_gtk.cc806 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/
Dgstwpevideosrc.cpp574 wpe_event.key_code = keysym; in gst_wpe_video_src_event()
/third_party/chromium/patch/
D0001-cve.patch149635 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,

12