HomeSort by relevance Sort by last modified time
    Searched refs:CtrlKey (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.cpp 328 static const unsigned CtrlKey = 1 << 0;
367 { VKEY_LEFT, CtrlKey, "MoveWordLeft" },
368 { VKEY_LEFT, CtrlKey | ShiftKey,
378 { VKEY_RIGHT, CtrlKey, "MoveWordRight" },
379 { VKEY_RIGHT, CtrlKey | ShiftKey,
389 { VKEY_UP, CtrlKey, "MoveParagraphBackward" },
390 { VKEY_UP, CtrlKey | ShiftKey, "MoveParagraphBackwardAndModifySelection" },
391 { VKEY_DOWN, CtrlKey, "MoveParagraphForward" },
392 { VKEY_DOWN, CtrlKey | ShiftKey, "MoveParagraphForwardAndModifySelection" },
411 { VKEY_HOME, CtrlKey, "MoveToBeginningOfDocument" }
    [all...]
WebInputEventConversion.cpp 85 m_modifiers |= PlatformEvent::CtrlKey;
134 m_modifiers |= PlatformEvent::CtrlKey;
231 m_modifiers |= PlatformEvent::CtrlKey;
272 m_modifiers |= PlatformEvent::CtrlKey;
402 m_modifiers |= PlatformEvent::CtrlKey;
417 if (event.ctrlKey())
554 if (event.modifiers() & PlatformEvent::CtrlKey)
649 if (modifiers & PlatformEvent::CtrlKey)
WebAccessibilityObject.cpp 540 if (modifiers & PlatformEvent::CtrlKey)
WebViewImpl.cpp 258 platformEventKeyState = platformEventKeyState | WebCore::PlatformEvent::CtrlKey;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformEvent.h 76 CtrlKey = 1 << 1,
84 bool ctrlKey() const { return m_modifiers & CtrlKey; }
114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
121 if (ctrlKey)
122 m_modifiers |= CtrlKey;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 178 convertedModifiers & PlatformEvent::CtrlKey,
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 111 bool shiftKey, ctrlKey, altKey, metaKey;
112 shiftKey = ctrlKey = altKey = metaKey = false;
115 ctrlKey = static_cast<bool>(keyState & PlatformEvent::CtrlKey);
120 LeftButton, PlatformEvent::MouseMoved, 0, shiftKey, ctrlKey, altKey,
    [all...]
EventHandler.cpp     [all...]

Completed in 283 milliseconds