Searched refs:CtrlKey (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | EditingBehavior.cpp | 40 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/ |
D | PlatformEvent.h | 78 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/ |
D | WebInputEventConversion.cpp | 108 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()
|
D | WebAXObject.cpp | 640 if (modifiers & PlatformEvent::CtrlKey) in keyboardShortcut()
|
D | WebViewImpl.cpp | 241 platformEventKeyState = platformEventKeyState | PlatformEvent::CtrlKey; in webInputEventKeyStateToPlatformEventKeyState()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorInputAgent.cpp | 175 convertedModifiers & PlatformEvent::CtrlKey, in dispatchMouseEvent()
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollableArea.cpp | 241 if (wheelEvent.modifiers() & PlatformEvent::CtrlKey) in handleWheelEvent()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | DragController.cpp | 116 bool ctrlKey = static_cast<bool>(keyState & PlatformEvent::CtrlKey); in createMouseEvent() 960 return keyState & PlatformEvent::CtrlKey; in isCopyKeyDown()
|
D | EventHandler.cpp | 1556 if (mouseEvent.button() == LeftButton && mouseEvent.modifiers() & PlatformEvent::CtrlKey) in handleMouseReleaseEvent() 2224 modifierFlags |= PlatformEvent::CtrlKey; in handleGestureTap() 3883 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; in accessKeyModifiers()
|