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

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingBehavior.cpp40 static const unsigned CtrlKey = 1 << 0; member in namespace:blink
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, "MoveToBeginningOfDocumen
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformEvent.h78 CtrlKey = 1 << 1, enumerator in enum:blink::PlatformEvent::Modifiers
86 bool ctrlKey() const { return m_modifiers & CtrlKey; }
124 m_modifiers |= CtrlKey;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputEventConversion.cpp108 m_modifiers |= PlatformEvent::CtrlKey;
161 m_modifiers |= PlatformEvent::CtrlKey;
273 m_modifiers |= PlatformEvent::CtrlKey;
314 m_modifiers |= PlatformEvent::CtrlKey;
449 m_modifiers |= PlatformEvent::CtrlKey;
622 if (event.modifiers() & PlatformEvent::CtrlKey)
716 if (modifiers & PlatformEvent::CtrlKey)
H A DWebAXObject.cpp640 if (modifiers & PlatformEvent::CtrlKey)
H A DWebViewImpl.cpp241 platformEventKeyState = platformEventKeyState | PlatformEvent::CtrlKey;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInputAgent.cpp175 convertedModifiers & PlatformEvent::CtrlKey,
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollableArea.cpp241 if (wheelEvent.modifiers() & PlatformEvent::CtrlKey)
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp116 bool ctrlKey = static_cast<bool>(keyState & PlatformEvent::CtrlKey);
960 return keyState & PlatformEvent::CtrlKey;
H A DEventHandler.cpp1556 if (mouseEvent.button() == LeftButton && mouseEvent.modifiers() & PlatformEvent::CtrlKey)
2224 modifierFlags |= PlatformEvent::CtrlKey;
3883 return PlatformEvent::CtrlKey | PlatformEvent::AltKey;

Completed in 4378 milliseconds