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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformEvent.h 75 AltKey = 1 << 0,
85 bool altKey() const { return m_modifiers & AltKey; }
114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
123 if (altKey)
124 m_modifiers |= AltKey;
  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.cpp 329 static const unsigned AltKey = 1 << 1;
335 static const unsigned OptionKey = AltKey;
450 { VKEY_RETURN, AltKey, "InsertNewline" },
451 { VKEY_RETURN, AltKey | ShiftKey, "InsertNewline" },
477 { '\r', AltKey, "InsertNewline" },
478 { '\r', AltKey | ShiftKey, "InsertNewline" },
508 if (keyEvent->altKey())
509 modifiers |= AltKey;
588 if (evt->keyEvent()->ctrlKey() && !evt->keyEvent()->altKey())
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 144 AltKey = 1 << 2,
175 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 452 milliseconds