Home
last modified time | relevance | path

Searched refs:scan_code (Results 1 – 4 of 4) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/core/linux/
DSDL_evdev.c401 SDL_Scancode scan_code; in SDL_EVDEV_Poll() local
440 scan_code = SDL_EVDEV_translate_keycode(events[i].code); in SDL_EVDEV_Poll()
441 if (scan_code != SDL_SCANCODE_UNKNOWN) { in SDL_EVDEV_Poll()
443 SDL_SendKeyboardKey(SDL_RELEASED, scan_code); in SDL_EVDEV_Poll()
445 SDL_SendKeyboardKey(SDL_PRESSED, scan_code); in SDL_EVDEV_Poll()
/third_party/flutter/glfw/src/
Dmir_window.c144 const int scan_code = mir_keyboard_event_scan_code(key_event); in handleKeyEvent() local
153 _glfwInputKey(window, toGLFWKeyCode(scan_code), scan_code, pressed, mods); in handleKeyEvent()
/third_party/python/Lib/
Dmodulefinder.py357 self.scan_code(co, m)
416 def scan_code(self, co, m): member in ModuleFinder
463 self.scan_code(c, m)
/third_party/cef/libcef/browser/native/
Dbrowser_platform_delegate_native_win.cc413 UINT scan_code = ::MapVirtualKeyW(event.windows_key_code, MAPVK_VK_TO_VSC); in HandleKeyboardEvent() local
414 msg.lParam = (scan_code << 16) | // key scan code in HandleKeyboardEvent()