Home
last modified time | relevance | path

Searched refs:VK_CONTROL (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/tools/site_compare/drivers/win32/
Dkeyboard.py91 ctrl_held = win32api.GetAsyncKeyState(win32con.VK_CONTROL) < 0
114 PressKey(True, win32con.VK_CONTROL)
117 PressKey(False, win32con.VK_CONTROL)
166 if ctrl_held: PressKey(False, win32con.VK_CONTROL)
/external/chromium_org/remoting/host/win/
Drdp_client_window.cc169 DCHECK(!(keyboard_state[VK_CONTROL] & kKeyPressedFlag)); in InjectSas()
174 UINT control = MapVirtualKey(VK_CONTROL, MAPVK_VK_TO_VSC); in InjectSas()
180 keyboard_state[VK_CONTROL] |= kKeyPressedFlag; in InjectSas()
183 SendMessage(input_window, WM_KEYDOWN, VK_CONTROL, MAKELPARAM(1, control)); in InjectSas()
205 keyboard_state[VK_CONTROL] &= ~kKeyPressedFlag; in InjectSas()
208 SendMessage(input_window, WM_KEYUP, VK_CONTROL, MAKELPARAM(1, control | up)); in InjectSas()
/external/chromium_org/third_party/WebKit/Source/platform/
DWindowsKeyboardCodes.h52 #ifndef VK_CONTROL
53 #define VK_CONTROL 0x11 // CTRL key macro
DPlatformKeyboardEvent.cpp91 ctrlKey = GetKeyState(VK_CONTROL) & HIGHBITMASKSHORT; in getCurrentModifierState()
DKeyboardCodes.h66 VKEY_CONTROL = VK_CONTROL,
/external/chromium_org/chrome/test/chromedriver/
Dkeycode_text_conversion_win.cc23 keyboard_state[VK_CONTROL] |= 0x80; in ConvertKeyCodeToText()
/external/chromium_org/content/browser/renderer_host/input/
Dweb_input_event_builders_win.cc69 case VK_CONTROL: in GetLocationModifier()
156 if (::GetKeyState(VK_CONTROL) & 0x8000) in Build()
345 if (get_key_state_func(VK_CONTROL) & 0x8000) in Build()
/external/chromium_org/chrome/app/
Dchrome_exe_main_win.cc28 unsigned short k1 = ::GetAsyncKeyState(VK_CONTROL); in CheckSafeModeLaunch()
/external/chromium_org/third_party/WebKit/Source/web/
DWebInputEvent.cpp206 return VK_CONTROL; in windowsKeyCodeWithoutLocation()
DWebInputEventConversion.cpp329 } else if (e.windowsKeyCode == VK_CONTROL) { in PlatformKeyboardEventBuilder()
/external/chromium_org/base/win/
Dwin_util.cc113 return (::GetKeyState(VK_CONTROL) & 0x8000) == 0x8000; in IsCtrlPressed()
122 (::GetKeyState(VK_CONTROL) & 0x8000) == 0x8000; in IsAltGrPressed()
/external/chromium_org/content/test/
Dmock_keyboard_driver_win.cc134 {VK_CONTROL, MockKeyboard::LEFT_CONTROL | MockKeyboard::RIGHT_CONTROL}, in SetModifiers()
/external/chromium_org/third_party/WebKit/Source/core/events/
DKeyboardEvent.cpp55 return VK_CONTROL; in windowsVirtualKeyCodeWithoutLocation()
/external/chromium_org/ui/events/keycodes/
Dkeyboard_codes_win.h19 VKEY_CONTROL = VK_CONTROL,
/external/chromium_org/ui/base/ime/win/
Dimm32_manager.cc580 if ((keystate[VK_CONTROL] & kKeyDownMask) == 0) in IsCtrlShiftPressed()
600 keystate[VK_CONTROL] = 0; in IsCtrlShiftPressed()
/external/chromium_org/third_party/angle/util/win32/
DWin32Window.cpp25 case VK_CONTROL: return (HIWORD(flags) & KF_EXTENDED) ? KEY_RCONTROL : KEY_LCONTROL; in VirtualKeyCodeToKey()
223 event.Key.Control = HIWORD(GetAsyncKeyState(VK_CONTROL)) != 0; in WndProc()
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
DSDL_dibevents.c156 case VK_CONTROL: in DIB_HandleMessage()
228 case VK_CONTROL: in DIB_HandleMessage()
/external/chromium_org/ui/aura/
Dremote_window_tree_host_win.cc52 SetKeyState(keyboard_state, !!(flags & ui::EF_CONTROL_DOWN), VK_CONTROL); in SetVirtualKeyStates()
/external/chromium_org/win8/metro_driver/
Dchrome_app_view.cc102 keys[key_count].ki.wVk = VK_CONTROL; in SendMnemonic()
103 keys[key_count].ki.wScan = MapVirtualKey(VK_CONTROL, 0); in SendMnemonic()
Dchrome_app_view_ash.cc108 keys[key_count].ki.wVk = VK_CONTROL; in SendKeySequence()
109 keys[key_count].ki.wScan = MapVirtualKey(VK_CONTROL, 0); in SendKeySequence()