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/editing/
EditingBehavior.cpp 41 static const unsigned AltKey = 1 << 1;
47 static const unsigned OptionKey = AltKey;
152 { VKEY_RETURN, AltKey, "InsertNewline" },
153 { VKEY_RETURN, AltKey | ShiftKey, "InsertNewline" },
179 { '\r', AltKey, "InsertNewline" },
180 { '\r', AltKey | ShiftKey, "InsertNewline" },
208 if (keyEvent->altKey())
209 modifiers |= AltKey;
255 if (event.keyEvent()->ctrlKey() && !event.keyEvent()->altKey())
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformEvent.h 77 AltKey = 1 << 0,
87 bool altKey() const { return m_modifiers & AltKey; }
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
125 if (altKey)
126 m_modifiers |= AltKey;
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 148 AltKey = 1 << 2,
179 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 1131 milliseconds