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/editing/
EditingBehavior.cpp 43 static const unsigned MetaKey = 1 << 3;
54 static const unsigned CommandKey = MetaKey;
212 if (keyEvent->metaKey())
213 modifiers |= MetaKey;
258 if (event.keyEvent()->metaKey())
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformEvent.h 79 MetaKey = 1 << 2,
88 bool metaKey() const { return m_modifiers & MetaKey; }
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
127 if (metaKey)
128 m_modifiers |= MetaKey;
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 149 MetaKey = 1 << 3,
179 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 661 milliseconds