/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | KeyboardEvent.cpp | 91 , altKey(false) in KeyboardEventInit() 106 … true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey()) in KeyboardEvent() 115 …, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shift… in KeyboardEvent() 124 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in KeyboardEvent() argument 125 …: UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKe… in KeyboardEvent() 138 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in initKeyboardEvent() argument 149 m_altKey = altKey; in initKeyboardEvent() 162 return altKey(); in getModifierState()
|
D | MouseEvent.cpp | 39 , altKey(false) in MouseEventInit() 64 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(), in create() 71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, in create() argument 77 …ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, dataTransfer, isSimulated, syntheticEve… in create() 89 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, in MouseEvent() argument 95 ctrlKey, altKey, shiftKey, metaKey, isSimulated) in MouseEvent() 108 …initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSim… in MouseEvent() 123 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, in initMouseEvent() argument 133 m_altKey = altKey; in initMouseEvent() 213 m_altKey = keyStateEvent->altKey(); in SimulatedMouseEvent() [all …]
|
D | KeyboardEvent.h | 42 bool altKey; member 75 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in create() argument 78 ctrlKey, altKey, shiftKey, metaKey)); in create() 85 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 110 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
|
D | UIEventWithKeyState.h | 35 bool altKey() const { return m_altKey; } in altKey() function 48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in UIEventWithKeyState() argument 51 , m_altKey(altKey) in UIEventWithKeyState()
|
D | TouchEvent.cpp | 45 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) in TouchEvent() argument 47 ctrlKey, altKey, shiftKey, metaKey) in TouchEvent() 62 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in initTouchEvent() argument 77 m_altKey = altKey; in initTouchEvent()
|
D | TouchEvent.h | 48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) in create() argument 51 ctrlKey, altKey, shiftKey, metaKey, cancelable)); in create() 58 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable);
|
D | MouseEvent.h | 44 bool altKey; member 62 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, 74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, 103 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
|
D | GestureEvent.cpp | 68 ….y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(… in create() 90 …, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bo… in GestureEvent() argument 91 …(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey) in GestureEvent()
|
D | WheelEvent.h | 71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in create() argument 74 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey)); in create() 98 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
|
D | WheelEvent.cpp | 63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in WheelEvent() argument 65 pageLocation.x(), pageLocation.y(), 0, 0, ctrlKey, altKey, shiftKey, metaKey, 0, nullptr, in WheelEvent() 112 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey())); in WheelEventDispatchMediator()
|
D | KeyboardEvent.idl | 34 [InitializedByEventConstructor] readonly attribute boolean altKey; 48 [Default=Undefined] optional boolean altKey,
|
D | MouseRelatedEvent.cpp | 58 … bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated) in MouseRelatedEvent() argument 59 …: UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shi… in MouseRelatedEvent()
|
D | TouchEvent.idl | 31 readonly attribute boolean altKey; 44 [Default=Undefined] optional boolean altKey,
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | PlatformKeyboardEvent.cpp | 87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bo… in getCurrentModifierState() argument 92 altKey = GetKeyState(VK_MENU) & HIGHBITMASKSHORT; in getCurrentModifierState() 98 altKey = currentModifiers & ::optionKey; in getCurrentModifierState() 103 altKey = false; in getCurrentModifierState()
|
D | PlatformEvent.h | 87 bool altKey() const { return m_modifiers & AltKey; } in altKey() function 116 … PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) in PlatformEvent() argument 125 if (altKey) in PlatformEvent()
|
D | PlatformMouseEvent.h | 77 …tformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, Syn… in PlatformMouseEvent() argument 78 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp) in PlatformMouseEvent()
|
D | PlatformWheelEvent.h | 78 … PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) in PlatformWheelEvent() argument 79 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0) in PlatformWheelEvent()
|
D | PlatformGestureEvent.h | 46 …const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, flo… in PlatformGestureEvent() argument 47 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp) in PlatformGestureEvent()
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
D | keycodes.js | 68 if (evt.altKey) { 91 altKey: true, property
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
D | key_sequence_test.unitjs | 28 * altKey: boolean=, 36 * altKey: Whether or not the alt key was held down. 55 if (eventParams.hasOwnProperty('altKey')) { 56 mockEvent.altKey = eventParams.altKey; 94 this.altDownArrowEvent = this.createMockEvent(40, {altKey: true}); 122 this.altShiftAEvent = this.createMockEvent(65, {altKey: true, 140 this.altAEvent = this.createMockEvent(65, {altKey: true}); 168 assertEqualsJSON([false], downKey.keys.altKey); 188 assertEqualsJSON([false], downKey.keys.altKey); 208 assertEqualsJSON([false], cvoxDownKey.keys.altKey); [all …]
|
D | key_sequence.js | 85 altKey: [], property 241 this.keys.altKey[index] = false; 384 return (keyEvent.altKey || (keyEvent.keyCode == 18));
|
/external/chromium_org/chrome/browser/resources/chromeos/keyboard/ |
D | keyboard_utils.js | 18 if (event.ctrlKey || event.shiftKey || event.altKey || event.metaKey) 38 if (event.ctrlKey || event.shiftKey || event.altKey || event.metaKey)
|
/external/chromium_org/chrome/third_party/chromevox/ |
D | chromeVoxKbExplorerScript.js | 30 …&&(b=b.filter(function(a){return"Ctrl"!=a}));this.isKeyModifierActive(a,"altKey")&&(b=b.filter(fun… 31 …tion(a,b){switch(b){case "ctrlKey":return a.ctrlKey||17==a.keyCode;case "altKey":return a.altKey||… 45 …"searchKeyHeld":k=cvox.KeyUtil.getReadableNameForKeyCode(91);break;case "altKey":k="Alt";break;cas…
|
/external/chromium_org/chrome/browser/resources/local_ntp/ |
D | window_disposition_util.js | 28 e.altKey,
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | EditingBehavior.cpp | 208 if (keyEvent->altKey()) in interpretKeyEvent() 255 if (event.keyEvent()->ctrlKey() && !event.keyEvent()->altKey()) in shouldInsertCharacter()
|