Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditorKeyBindings.cpp42 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/
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.cpp94 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()
DWebAXObject.cpp554 if (modifiers & PlatformEvent::CtrlKey) in keyboardShortcut()
DWebViewImpl.cpp246 platformEventKeyState = platformEventKeyState | WebCore::PlatformEvent::CtrlKey; in webInputEventKeyStateToPlatformEventKeyState()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorInputAgent.cpp180 convertedModifiers & PlatformEvent::CtrlKey, in dispatchMouseEvent()
/external/chromium_org/third_party/WebKit/Source/core/page/
DDragController.cpp117 ctrlKey = static_cast<bool>(keyState & PlatformEvent::CtrlKey); in createMouseEvent()
DEventHandler.cpp1683 if (mouseEvent.button() == LeftButton && mouseEvent.modifiers() & PlatformEvent::CtrlKey) in handleMouseReleaseEvent()
2417 modifierFlags |= PlatformEvent::CtrlKey; in handleGestureTap()
4021 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; in accessKeyModifiers()