Home
last modified time | relevance | path

Searched refs:CtrlKey (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditingBehavior.cpp40 static const unsigned CtrlKey = 1 << 0; variable
82 { VKEY_LEFT, CtrlKey, "MoveWordLeft" },
83 { VKEY_LEFT, CtrlKey | ShiftKey,
92 { VKEY_RIGHT, CtrlKey, "MoveWordRight" },
93 { VKEY_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
102 { VKEY_UP, CtrlKey, "MoveParagraphBackward" },
103 { VKEY_UP, CtrlKey | ShiftKey, "MoveParagraphBackwardAndModifySelection" },
104 { VKEY_DOWN, CtrlKey, "MoveParagraphForward" },
105 { VKEY_DOWN, CtrlKey | ShiftKey, "MoveParagraphForwardAndModifySelection" },
117 { VKEY_HOME, CtrlKey, "MoveToBeginningOfDocument" },
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformEvent.h78 CtrlKey = 1 << 1, enumerator
86 bool ctrlKey() const { return m_modifiers & CtrlKey; } in ctrlKey()
124 m_modifiers |= CtrlKey; in PlatformEvent()
/external/chromium_org/third_party/WebKit/Source/web/
DWebInputEventConversion.cpp108 m_modifiers |= PlatformEvent::CtrlKey; in PlatformMouseEventBuilder()
161 m_modifiers |= PlatformEvent::CtrlKey; in PlatformWheelEventBuilder()
273 m_modifiers |= PlatformEvent::CtrlKey; in PlatformGestureEventBuilder()
314 m_modifiers |= PlatformEvent::CtrlKey; in PlatformKeyboardEventBuilder()
449 m_modifiers |= PlatformEvent::CtrlKey; in PlatformTouchEventBuilder()
622 if (event.modifiers() & PlatformEvent::CtrlKey) in WebMouseEventBuilder()
716 if (modifiers & PlatformEvent::CtrlKey) in toWebKeyboardEventModifiers()
DWebAXObject.cpp640 if (modifiers & PlatformEvent::CtrlKey) in keyboardShortcut()
DWebViewImpl.cpp241 platformEventKeyState = platformEventKeyState | PlatformEvent::CtrlKey; in webInputEventKeyStateToPlatformEventKeyState()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorInputAgent.cpp175 convertedModifiers & PlatformEvent::CtrlKey, in dispatchMouseEvent()
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollableArea.cpp241 if (wheelEvent.modifiers() & PlatformEvent::CtrlKey) in handleWheelEvent()
/external/chromium_org/third_party/WebKit/Source/core/page/
DDragController.cpp116 bool ctrlKey = static_cast<bool>(keyState & PlatformEvent::CtrlKey); in createMouseEvent()
960 return keyState & PlatformEvent::CtrlKey; in isCopyKeyDown()
DEventHandler.cpp1556 if (mouseEvent.button() == LeftButton && mouseEvent.modifiers() & PlatformEvent::CtrlKey) in handleMouseReleaseEvent()
2224 modifierFlags |= PlatformEvent::CtrlKey; in handleGestureTap()
3883 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; in accessKeyModifiers()