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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformEvent.h 77 MetaKey = 1 << 2,
86 bool metaKey() const { return m_modifiers & MetaKey; }
114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
125 if (metaKey)
126 m_modifiers |= MetaKey;
  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.cpp 331 static const unsigned MetaKey = 1 << 3;
342 static const unsigned CommandKey = MetaKey;
512 if (keyEvent->metaKey())
513 modifiers |= MetaKey;
591 if (evt->keyEvent()->metaKey())
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 145 MetaKey = 1 << 3,
175 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 56 milliseconds