Searched defs:metaKey (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformKeyboardEvent.cpp87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey) argument
93 metaKey = false;
99 metaKey = currentModifiers & ::cmdKey;
104 metaKey = false;
H A DPlatformGestureEvent.h46 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) argument
47 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
H A DPlatformMouseEvent.h77 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) argument
78 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
H A DPlatformEvent.h88 bool metaKey() const { return m_modifiers & MetaKey; } function in class:blink::PlatformEvent
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
127 if (metaKey)
H A DPlatformWheelEvent.h78 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
79 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0)
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DUIEventWithKeyState.h36 bool metaKey() const { return m_metaKey; } function in class:blink::UIEventWithKeyState
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
53 , m_metaKey(metaKey)
47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DGestureEvent.cpp68 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) argument
91 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
H A DTouchEvent.cpp45 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;
42 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
58 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int, int, int, int, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.h48 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);
45 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
H A DWheelEvent.cpp63 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()));
61 WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtrWillBeRawPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DKeyboardEvent.cpp93 , 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();
122 KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
136 initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DKeyboardEvent.h44 bool metaKey; member in struct:blink::KeyboardEventInit
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);
73 create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String& keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DMouseEvent.h46 bool metaKey; member in struct:blink::MouseEventInit
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,
H A DWheelEvent.h71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
74 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey));
98 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
68 create(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtrWillBeRawPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DMouseEvent.cpp41 , 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();
68 create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, int movementX, int movementY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtrWillBeRawPtr<EventTarget> relatedTarget, PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer, bool isSimulated, PlatformMouseEvent::SyntheticEventType syntheticEventType) argument
86 MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, int movementX, int movementY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtrWillBeRawPtr<EventTarget> relatedTarget, PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer, bool isSimulated, PlatformMouseEvent::SyntheticEventType syntheticEventType) argument
121 initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtrWillBeRawPtr<EventTarget> relatedTarget) argument
[all...]
H A DMouseRelatedEvent.cpp58 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated)
59 : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
55 MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> abstractView, int detail, const IntPoint& screenLocation, const IntPoint& windowLocation, const IntPoint& movementDelta, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated) argument
/external/chromium_org/remoting/webapp/browser_test/
H A Dbump_scroll_browser_test.js144 metaKey: false,
152 e.ctrlKey, e.altKey, e.shiftKey, e.metaKey,
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp118 bool metaKey = static_cast<bool>(keyState & PlatformEvent::MetaKey); local
122 metaKey, PlatformMouseEvent::RealOrIndistinguishable, currentTime());
H A DEventHandler.cpp1624 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(),
2225 if (gestureEvent.metaKey())
2297 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), PlatformMouseEvent::FromTouch, WTF::currentTime());
2301 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), PlatformMouseEvent::FromTouch, WTF::currentTime());
2488 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey());
2888 bool metaKey; local
2889 PlatformKeyboardEvent::getCurrentModifierState(shiftKey, ctrlKey, altKey, metaKey);
2890 PlatformMouseEvent fakeMouseMoveEvent(m_lastKnownMousePosition, m_lastKnownMouseGlobalPosition, NoButton, PlatformEvent::MouseMoved, 0, shiftKey, ctrlKey, altKey, metaKey, PlatformMouseEvent::RealOrIndistinguishable, currentTime());
3358 if (event->ctrlKey() || event->metaKey() || event->altKey())
3379 if (event->ctrlKey() || event->metaKey() || even
[all...]

Completed in 300 milliseconds