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

  /external/chromium/chrome/browser/resources/keyboard/
main.js 262 function ShiftKey(aspect) {
268 ShiftKey.prototype = {
538 new ShiftKey(1.6),
549 new ShiftKey(1)
613 keyEvent['shiftKey'] = true;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformEvent.h 78 ShiftKey = 1 << 3,
83 bool shiftKey() const { return m_modifiers & ShiftKey; }
114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
119 if (shiftKey)
120 m_modifiers |= ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.cpp 330 static const unsigned ShiftKey = 1 << 2;
361 { VKEY_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
364 { VKEY_LEFT, OptionKey | ShiftKey,
368 { VKEY_LEFT, CtrlKey | ShiftKey,
372 { VKEY_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
375 { VKEY_RIGHT, OptionKey | ShiftKey,
379 { VKEY_RIGHT, CtrlKey | ShiftKey,
383 { VKEY_UP, ShiftKey, "MoveUpAndModifySelection" },
384 { VKEY_PRIOR, ShiftKey, "MovePageUpAndModifySelection" },
386 { VKEY_DOWN, ShiftKey, "MoveDownAndModifySelection" }
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 142 ShiftKey = 1 << 0,
175 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;

Completed in 76 milliseconds