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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/events/
UIEventWithKeyState.h 36 bool metaKey() const { return m_metaKey; }
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
53 , m_metaKey(metaKey)
KeyboardEvent.cpp 93 , metaKey(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)
150 m_metaKey = metaKey;
164 return metaKey();
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)
79 m_metaKey = metaKey;
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 44 bool metaKey;
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 35 [InitializedByEventConstructor] readonly attribute boolean metaKey;
50 [Default=Undefined] optional boolean metaKey);
TouchEvent.idl 32 readonly attribute boolean metaKey;
46 [Default=Undefined] optional boolean metaKey);
MouseEvent.cpp 41 , metaKey(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,
135 m_metaKey = metaKey;
215 m_metaKey = keyStateEvent->metaKey();
    [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 46 bool metaKey;
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 30 [InitializedByEventConstructor] readonly attribute boolean metaKey;
50 [Default=Undefined] optional boolean metaKey,
MouseRelatedEvent.h 70 bool shiftKey, bool metaKey, bool isSimulated = false);
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformKeyboardEvent.cpp 87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
93 metaKey = false;
99 metaKey = currentModifiers & ::cmdKey;
104 metaKey = false;
PlatformEvent.h 79 MetaKey = 1 << 2,
88 bool metaKey() const { return m_modifiers & MetaKey; }
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
127 if (metaKey)
128 m_modifiers |= MetaKey;
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)
PlatformKeyboardEvent.h 90 PLATFORM_EXPORT static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
keycodes.js 71 if (evt.metaKey) {
93 metaKey: false});
  /external/chromium_org/chrome/browser/resources/local_ntp/
window_disposition_util.js 30 e.metaKey,
  /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))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.hotkeys.js 66 if ( event.metaKey && !event.ctrlKey && special !== "meta" ) {

Completed in 162 milliseconds

1 2 3 4 5