/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | KeyboardEvent.cpp | 90 , ctrlKey(false) in KeyboardEventInit() 108 … true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey()) in KeyboardEvent() 119 …nitializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altK… in KeyboardEvent() 130 … bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) in KeyboardEvent() argument 131 …: UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKe… in KeyboardEvent() 146 … bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) in initKeyboardEvent() argument 155 m_ctrlKey = ctrlKey; in initKeyboardEvent() 167 return ctrlKey(); in getModifierState()
|
D | WheelEvent.cpp | 65 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) in WheelEvent() argument 70 ctrlKey, altKey, shiftKey, metaKey, 0, nullptr, nullptr, false) in WheelEvent() 83 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in initWheelEvent() argument 91 m_ctrlKey = ctrlKey; in initWheelEvent() 107 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in initWebKitWheelEvent() argument 110 ctrlKey, altKey, shiftKey, metaKey); in initWebKitWheelEvent() 150 …event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.directionInvertedFromDev… in WheelEventDispatchMediator()
|
D | MouseEvent.cpp | 38 , ctrlKey(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, clipboard, isSimulated)); in create() 90 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, in MouseEvent() argument 96 ctrlKey, altKey, shiftKey, metaKey, isSimulated) in MouseEvent() 109 …initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSim… in MouseEvent() 125 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, in initMouseEvent() argument 134 m_ctrlKey = ctrlKey; in initMouseEvent() 215 m_ctrlKey = keyStateEvent->ctrlKey(); in SimulatedMouseEvent() [all …]
|
D | KeyboardEvent.h | 41 bool ctrlKey; member 74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) in create() argument 77 ctrlKey, altKey, shiftKey, metaKey, altGraphKey)); in create() 84 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false); 111 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
|
D | WheelEvent.h | 70 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) in create() argument 73 … screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice)); in create() 78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 82 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 107 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice);
|
D | UIEventWithKeyState.h | 33 bool ctrlKey() const { return m_ctrlKey; } in ctrlKey() function 48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in UIEventWithKeyState() argument 50 , m_ctrlKey(ctrlKey) 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() 63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) in initTouchEvent() argument 77 m_ctrlKey = ctrlKey; in initTouchEvent()
|
D | TouchEvent.h | 47 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) in create() argument 50 ctrlKey, altKey, shiftKey, metaKey, cancelable)); in create() 57 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 80 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable);
|
D | MouseEvent.h | 43 bool ctrlKey; member 61 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, 72 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, 100 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
|
D | GestureEvent.cpp | 68 ….globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey()… in create() 90 …ractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, boo… in GestureEvent() argument 91 … IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey… in GestureEvent()
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
D | key_sequence_test.js | 59 mockEvent.ctrlKey = eventParams.ctrlKey; 112 this.ctrlAEvent = this.createMockEvent(65, {ctrlKey: true}); property 146 this.ctrlBEvent = this.createMockEvent(66, {ctrlKey: true}); property 152 this.ctrlShiftEvent = this.createMockEvent(60, {ctrlKey: true}); property 169 assertEqualsJSON([false], downKey.keys.ctrlKey); 189 assertEqualsJSON([false], downKey.keys.ctrlKey); 209 assertEqualsJSON([false], cvoxDownKey.keys.ctrlKey); 224 var ctrlKey = new cvox.KeySequence(this.ctrlEvent, false); 227 assertTrue(ctrlKey.equals(ctrlSticky)); 397 assertEqualsJSON(ctrlString.keys.ctrlKey, [true]); [all …]
|
/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 91 ctrlKey = GetKeyState(VK_CONTROL) & HIGHBITMASKSHORT; in getCurrentModifierState() 97 ctrlKey = currentModifiers & ::controlKey; in getCurrentModifierState() 102 ctrlKey = false; in getCurrentModifierState()
|
D | PlatformEvent.h | 86 bool ctrlKey() const { return m_modifiers & CtrlKey; } in ctrlKey() function 116 … PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) in PlatformEvent() argument 123 if (ctrlKey) in PlatformEvent()
|
D | PlatformMouseEvent.h | 75 …on button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, boo… in PlatformMouseEvent() argument 76 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp) in PlatformMouseEvent()
|
D | PlatformGestureEvent.h | 46 …obalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, boo… in PlatformGestureEvent() argument 47 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp) in PlatformGestureEvent()
|
D | PlatformWheelEvent.h | 82 …elTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, boo… in PlatformWheelEvent() argument 83 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0) in PlatformWheelEvent()
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
D | list_selection_controller.js | 134 } else if (!isDown && !e.shiftKey && !e.ctrlKey) 141 (e.ctrlKey && !e.shiftKey))) { 207 (cr.isMac && e.metaKey || !cr.isMac && e.ctrlKey)) { 217 if (e.ctrlKey || !selected) { 265 } else if (e.ctrlKey && !cr.isMac && !cr.isChromeOS) {
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/ |
D | list_selection_controller.js | 134 } else if (!isDown && !e.shiftKey && !e.ctrlKey) 141 (e.ctrlKey && !e.shiftKey))) { 210 (cr.isMac && e.metaKey || !cr.isMac && e.ctrlKey)) { 220 if (e.ctrlKey || !selected) { 268 } else if (e.ctrlKey && !cr.isMac) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
D | KeyboardShortcut.js | 152 if (keyboardEvent.ctrlKey) 173 return WebInspector.isMac() ? event.metaKey && !event.ctrlKey : event.ctrlKey && !event.metaKey; 182 return !event.ctrlKey && !event.shiftKey && !event.altKey && !event.metaKey; 275 const ctrlKey = "\u2303"; 280 res += isMac ? ctrlKey : "Ctrl + ";
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
D | keycodes.js | 65 if (evt.ctrlKey) { 92 ctrlKey: true, property
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
D | jquery.hotkeys.js | 61 if ( event.ctrlKey && special !== "ctrl" ) { 66 if ( event.metaKey && !event.ctrlKey && special !== "meta" ) {
|
/external/chromium_org/chrome/browser/resources/chromeos/keyboard/ |
D | keyboard_utils.js | 16 if (event.ctrlKey || event.shiftKey || event.altKey || event.metaKey) 34 if (event.ctrlKey || event.shiftKey || event.altKey || event.metaKey)
|
/external/chromium_org/chrome/browser/resources/extensions/ |
D | extension_command_list.js | 83 if (event.ctrlKey) 85 if (!event.ctrlKey && event.altKey) 166 return event.ctrlKey || event.altKey || (cr.isMac && event.metaKey) || 431 if (!event.ctrlKey && !event.altKey) {
|
/external/chromium_org/chrome/third_party/chromevox/ |
D | chromeVoxKbExplorerScript.js | 30 …{var b=cvox.ChromeVox.modKeyStr.split(/\+/g);this.isKeyModifierActive(a,"ctrlKey")&&(b=b.filter(fu… 31 ….KeySequence.prototype.isKeyModifierActive=function(a,b){switch(b){case "ctrlKey":return a.ctrlKey… 45 …">";var f="",g;for(g in a.keys)if(a.keys[g][h]){var k="";switch(g){case "ctrlKey":k="Ctrl";break;c…
|
/external/chromium_org/chrome/browser/resources/pdf/ |
D | pdf.js | 199 if (e.ctrlKey || e.metaKey) { 207 if (e.ctrlKey || e.metaKey) { 214 if (e.ctrlKey || e.metaKey) { 223 if (e.ctrlKey || e.metaKey) {
|