HomeSort by relevance Sort by last modified time
    Searched refs:ctrlKey (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/events/
UIEventWithKeyState.h 33 bool ctrlKey() const { return m_ctrlKey; }
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
50 , m_ctrlKey(ctrlKey)
KeyboardEvent.cpp 90 , ctrlKey(false)
106 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
115 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey)
124 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
125 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
138 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
147 m_ctrlKey = ctrlKey;
158 return ctrlKey();
TouchEvent.cpp 45 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
47 ctrlKey, altKey, shiftKey, metaKey)
62 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
76 m_ctrlKey = ctrlKey;
TouchEvent.h 48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
51 ctrlKey, altKey, shiftKey, metaKey, cancelable));
58 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable);
KeyboardEvent.h 41 bool ctrlKey;
75 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
78 ctrlKey, altKey, shiftKey, metaKey));
85 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
110 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
WheelEvent.h 71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
74 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey));
98 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
KeyboardEvent.idl 32 [InitializedByEventConstructor] readonly attribute boolean ctrlKey;
47 [Default=Undefined] optional boolean ctrlKey,
TouchEvent.idl 29 readonly attribute boolean ctrlKey;
43 [Default=Undefined] optional boolean ctrlKey,
MouseEvent.cpp 38 , ctrlKey(false)
64 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(),
71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
77 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, dataTransfer, isSimulated, syntheticEventType));
89 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
95 ctrlKey, altKey, shiftKey, metaKey, isSimulated)
108 initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSimulated */)
123 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
132 m_ctrlKey = ctrlKey;
212 m_ctrlKey = keyStateEvent->ctrlKey();
    [all...]
GestureEvent.cpp 68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY)
91 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
WheelEvent.cpp 63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
65 pageLocation.x(), pageLocation.y(), 0, 0, ctrlKey, altKey, shiftKey, metaKey, 0, nullptr,
112 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey()));
GestureEvent.h 52 GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
MouseEvent.h 43 bool ctrlKey;
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,
MouseEvent.idl 27 [InitializedByEventConstructor] readonly attribute boolean ctrlKey;
47 [Default=Undefined] optional boolean ctrlKey,
MouseRelatedEvent.h 69 const IntPoint& windowLocation, const IntPoint& movementDelta, bool ctrlKey, bool altKey,
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformKeyboardEvent.cpp 87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
91 ctrlKey = GetKeyState(VK_CONTROL) & HIGHBITMASKSHORT;
97 ctrlKey = currentModifiers & ::controlKey;
102 ctrlKey = false;
PlatformEvent.h 78 CtrlKey = 1 << 1,
86 bool ctrlKey() const { return m_modifiers & CtrlKey; }
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
123 if (ctrlKey)
124 m_modifiers |= CtrlKey;
PlatformMouseEvent.h 77 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, SyntheticEventType synthesized, double timestamp)
78 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
PlatformWheelEvent.h 78 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
79 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0)
PlatformGestureEvent.h 46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY)
47 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
keycodes.js 65 if (evt.ctrlKey) {
92 ctrlKey: true,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.hotkeys.js 61 if ( event.ctrlKey && special !== "ctrl" ) {
66 if ( event.metaKey && !event.ctrlKey && special !== "meta" ) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
KeyboardShortcut.js 153 if (keyboardEvent.ctrlKey)
181 return WebInspector.isMac() ? event.metaKey && !event.ctrlKey : event.ctrlKey && !event.metaKey;
190 return !event.ctrlKey && !event.shiftKey && !event.altKey && !event.metaKey;
288 const ctrlKey = "\u2303";
293 res += isMac ? ctrlKey : "Ctrl + ";
  /external/chromium_org/chrome/browser/resources/local_ntp/
window_disposition_util.js 29 e.ctrlKey,
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationAction.cpp 74 if (!mouseEvent || !navigationPolicyFromMouseEvent(mouseEvent->button(), mouseEvent->ctrlKey(), mouseEvent->shiftKey(), mouseEvent->altKey(), mouseEvent->metaKey(), &m_policy))

Completed in 340 milliseconds

1 2 3 4 5