Searched refs:CtrlKey (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | EditorKeyBindings.cpp | 42 static const unsigned CtrlKey = 1 << 0; variable 84 { VKEY_LEFT, CtrlKey, "MoveWordLeft" }, 85 { VKEY_LEFT, CtrlKey | ShiftKey, 94 { VKEY_RIGHT, CtrlKey, "MoveWordRight" }, 95 { VKEY_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" }, 104 { VKEY_UP, CtrlKey, "MoveParagraphBackward" }, 105 { VKEY_UP, CtrlKey | ShiftKey, "MoveParagraphBackwardAndModifySelection" }, 106 { VKEY_DOWN, CtrlKey, "MoveParagraphForward" }, 107 { VKEY_DOWN, CtrlKey | ShiftKey, "MoveParagraphForwardAndModifySelection" }, 119 { 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 | 94 m_modifiers |= PlatformEvent::CtrlKey; in PlatformMouseEventBuilder() 145 m_modifiers |= PlatformEvent::CtrlKey; in PlatformWheelEventBuilder() 253 m_modifiers |= PlatformEvent::CtrlKey; in PlatformGestureEventBuilder() 294 m_modifiers |= PlatformEvent::CtrlKey; in PlatformKeyboardEventBuilder() 425 m_modifiers |= PlatformEvent::CtrlKey; in PlatformTouchEventBuilder() 577 if (event.modifiers() & PlatformEvent::CtrlKey) in WebMouseEventBuilder() 671 if (modifiers & PlatformEvent::CtrlKey) in toWebKeyboardEventModifiers()
|
D | WebAXObject.cpp | 554 if (modifiers & PlatformEvent::CtrlKey) in keyboardShortcut()
|
D | WebViewImpl.cpp | 246 platformEventKeyState = platformEventKeyState | WebCore::PlatformEvent::CtrlKey; in webInputEventKeyStateToPlatformEventKeyState()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorInputAgent.cpp | 180 convertedModifiers & PlatformEvent::CtrlKey, in dispatchMouseEvent()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | DragController.cpp | 117 ctrlKey = static_cast<bool>(keyState & PlatformEvent::CtrlKey); in createMouseEvent()
|
D | EventHandler.cpp | 1683 if (mouseEvent.button() == LeftButton && mouseEvent.modifiers() & PlatformEvent::CtrlKey) in handleMouseReleaseEvent() 2417 modifierFlags |= PlatformEvent::CtrlKey; in handleGestureTap() 4021 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; in accessKeyModifiers()
|