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

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingBehavior.cpp42 static const unsigned ShiftKey = 1 << 2; member in namespace:blink
76 { VKEY_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
79 { VKEY_LEFT, OptionKey | ShiftKey,
83 { VKEY_LEFT, CtrlKey | ShiftKey,
87 { VKEY_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
90 { VKEY_RIGHT, OptionKey | ShiftKey, "MoveWordRightAndModifySelection" },
93 { VKEY_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
96 { VKEY_UP, ShiftKey, "MoveUpAndModifySelection" },
97 { VKEY_PRIOR, ShiftKey, "MovePageUpAndModifySelection" },
99 { VKEY_DOWN, ShiftKey, "MoveDownAndModifySelectio
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformEvent.h80 ShiftKey = 1 << 3, enumerator in enum:blink::PlatformEvent::Modifiers
85 bool shiftKey() const { return m_modifiers & ShiftKey; }
122 m_modifiers |= ShiftKey;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebInputEvent.h146 ShiftKey = 1 << 0, enumerator in enum:blink::WebInputEvent::Modifiers
179 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 1189 milliseconds