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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingBehavior.cpp 42 static const unsigned ShiftKey = 1 << 2;
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, "MoveDownAndModifySelection" }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformEvent.h 80 ShiftKey = 1 << 3,
85 bool shiftKey() const { return m_modifiers & ShiftKey; }
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
121 if (shiftKey)
122 m_modifiers |= ShiftKey;
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 146 ShiftKey = 1 << 0,
179 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 491 milliseconds