Searched defs:AltKey (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingBehavior.cpp41 static const unsigned AltKey = 1 << 1; member in namespace:blink
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" },
209 modifiers |= AltKey;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformEvent.h77 AltKey = 1 << 0, enumerator in enum:blink::PlatformEvent::Modifiers
87 bool altKey() const { return m_modifiers & AltKey; }
126 m_modifiers |= AltKey;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebInputEvent.h148 AltKey = 1 << 2, enumerator in enum:blink::WebInputEvent::Modifiers
179 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 105 milliseconds