Home
last modified time | relevance | path

Searched refs:ctrlKey (Results 1 – 25 of 125) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/events/
DKeyboardEvent.cpp90 , 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()
DWheelEvent.cpp65 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()
DMouseEvent.cpp38 , 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 …]
DKeyboardEvent.h41 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);
DWheelEvent.h70 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);
DUIEventWithKeyState.h33 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()
DTouchEvent.cpp45 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()
DTouchEvent.h47 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);
DMouseEvent.h43 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,
DGestureEvent.cpp68 ….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/
Dkey_sequence_test.js59 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/
DPlatformKeyboardEvent.cpp87 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()
DPlatformEvent.h86 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()
DPlatformMouseEvent.h75 …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()
DPlatformGestureEvent.h46 …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()
DPlatformWheelEvent.h82 …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/
Dlist_selection_controller.js134 } 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/
Dlist_selection_controller.js134 } 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/
DKeyboardShortcut.js152 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/
Dkeycodes.js65 if (evt.ctrlKey) {
92 ctrlKey: true, property
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
Djquery.hotkeys.js61 if ( event.ctrlKey && special !== "ctrl" ) {
66 if ( event.metaKey && !event.ctrlKey && special !== "meta" ) {
/external/chromium_org/chrome/browser/resources/chromeos/keyboard/
Dkeyboard_utils.js16 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/
Dextension_command_list.js83 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/
DchromeVoxKbExplorerScript.js30 …{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/
Dpdf.js199 if (e.ctrlKey || e.metaKey) {
207 if (e.ctrlKey || e.metaKey) {
214 if (e.ctrlKey || e.metaKey) {
223 if (e.ctrlKey || e.metaKey) {

12345