Home
last modified time | relevance | path

Searched refs:altKey (Results 1 – 25 of 117) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/events/
DKeyboardEvent.cpp91 , 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()
DMouseEvent.cpp39 , 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 …]
DKeyboardEvent.h42 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);
DUIEventWithKeyState.h35 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()
DTouchEvent.cpp45 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()
DTouchEvent.h48 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);
DMouseEvent.h44 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,
DGestureEvent.cpp68 ….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()
DWheelEvent.h71 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);
DWheelEvent.cpp63 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()
DKeyboardEvent.idl34 [InitializedByEventConstructor] readonly attribute boolean altKey;
48 [Default=Undefined] optional boolean altKey,
DMouseRelatedEvent.cpp58 … 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()
DTouchEvent.idl31 readonly attribute boolean altKey;
44 [Default=Undefined] optional boolean altKey,
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformKeyboardEvent.cpp87 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()
DPlatformEvent.h87 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()
DPlatformMouseEvent.h77 …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()
DPlatformWheelEvent.h78 … PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) in PlatformWheelEvent() argument
79 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0) in PlatformWheelEvent()
DPlatformGestureEvent.h46 …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/
Dkeycodes.js68 if (evt.altKey) {
91 altKey: true, property
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
Dkey_sequence_test.unitjs28 * 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 …]
Dkey_sequence.js85 altKey: [], property
241 this.keys.altKey[index] = false;
384 return (keyEvent.altKey || (keyEvent.keyCode == 18));
/external/chromium_org/chrome/browser/resources/chromeos/keyboard/
Dkeyboard_utils.js18 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/
DchromeVoxKbExplorerScript.js30 …&&(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/
Dwindow_disposition_util.js28 e.altKey,
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditingBehavior.cpp208 if (keyEvent->altKey()) in interpretKeyEvent()
255 if (event.keyEvent()->ctrlKey() && !event.keyEvent()->altKey()) in shouldInsertCharacter()

12345