HomeSort by relevance Sort by last modified time
    Searched defs:MetaKey (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 98 MetaKey = 1 << 2,
155 bool metaKey() const { return m_metaKey; }
159 | (metaKey() ? MetaKey : 0)
164 static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
  /external/webkit/Source/WebKit/chromium/public/
WebInputEvent.h 115 MetaKey = 1 << 3,
133 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 376 static const unsigned MetaKey = 1 << 3;
387 static const unsigned CommandKey = MetaKey;
552 if (keyEvent->metaKey())
553 modifiers |= MetaKey;
631 if (evt->keyEvent()->metaKey())
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 81 MetaKey = 1 << 3,
90 bool metaKey() const { return m_modifiers & MetaKey; }
312 WebTouchEvent(Type, Vector<WebPlatformTouchPoint>, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers, double timestamp);

Completed in 63 milliseconds