Home | History | Annotate | Download | only in resources

Lines Matching refs:SHIFT

43   glyph_shift: 'shift',
49 shift: 'shift',
54 'SHIFT': 'modifier-shift',
60 '2A': 'is-shift',
125 16: 'SHIFT',
128 91: 'ALT', // left ALT pressed with SHIFT
129 92: 'ALT', // right ALT pressed with SHIFT
132 var isPressed = {'SHIFT': e.shiftKey, 'CTRL': e.ctrlKey, 'ALT': e.altKey};
133 // if e.keyCode is one of Shift, Ctrl and Alt, isPressed should
140 return ['SHIFT', 'CTRL', 'ALT'].filter(
184 if ((identifier == '2A' && contains(modifiers, 'SHIFT')) ||
236 * keycode: 'd', modifiers: ['CTRL', 'SHIFT'] => 'd<>CTRL<>SHIFT'
237 * keycode: 'alt', modifiers: ['ALT', 'SHIFT'] => 'ALT<>SHIFT'