Searched defs:metaKey (Results 1 - 18 of 18) 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.h75 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
76 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
H A DPlatformEvent.h88 bool metaKey() const { return m_modifiers & MetaKey; } function in class:WebCore::PlatformEvent
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
127 if (metaKey)
H A DPlatformWheelEvent.h80 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
81 : 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:WebCore::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, PassRefPtr<AbstractView> view, int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DGestureEvent.cpp73 return adoptRef(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));
76 void GestureEvent::initGestureEvent(const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY) argument
86 m_metaKey = metaKey;
113 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY) argument
114 : 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)
49 ctrlKey, altKey, shiftKey, metaKey)
64 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
78 m_metaKey = metaKey;
42 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
61 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.h48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
52 ctrlKey, altKey, shiftKey, metaKey));
59 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
79 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
44 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DKeyboardEvent.cpp94 , metaKey(false)
109 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
120 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey)
131 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
132 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
147 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
159 m_metaKey = metaKey;
174 return metaKey();
129 KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
145 initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
H A DKeyboardEvent.h44 bool metaKey; member in struct:WebCore::KeyboardEventInit
74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
77 ctrlKey, altKey, shiftKey, metaKey, altGraphKey));
84 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false);
109 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
72 create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String& keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
H A DMouseEvent.h46 bool metaKey; member in struct:WebCore::MouseEventInit
61 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
67 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
106 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
H A DWheelEvent.cpp66 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
71 ctrlKey, altKey, shiftKey, metaKey, 0, 0, 0, false)
84 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
95 m_metaKey = metaKey;
108 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
111 ctrlKey, altKey, shiftKey, metaKey);
146 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.directionInvertedFromDevice()));
64 WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) argument
82 initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
106 initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DMouseEvent.cpp43 , metaKey(false)
65 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(),
72 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
79 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, 0, false);
85 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
91 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipboard, isSimulated));
104 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
110 ctrlKey, altKey, shiftKey, metaKey, isSimulated)
123 initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSimulated */)
139 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
69 create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<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, PassRefPtr<EventTarget> relatedTarget) argument
82 create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<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, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard> clipboard, bool isSimulated) argument
101 MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<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, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard> clipboard, bool isSimulated) argument
137 initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<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, PassRefPtr<AbstractView> abstractView, int detail, const IntPoint& screenLocation, const IntPoint& windowLocation, const IntPoint& movementDelta, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated) argument
H A DWheelEvent.h70 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
73 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice));
78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
82 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
105 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice);
67 create(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) argument
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp113 bool shiftKey, ctrlKey, altKey, metaKey; local
114 shiftKey = ctrlKey = altKey = metaKey = false;
119 metaKey = static_cast<bool>(keyState & PlatformEvent::MetaKey);
123 metaKey, currentTime());
H A DEventHandler.cpp1103 bool metaKey; local
1104 PlatformKeyboardEvent::getCurrentModifierState(shiftKey, ctrlKey, altKey, metaKey);
1752 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(),
2418 if (gestureEvent.metaKey())
2448 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), WTF::currentTime());
2452 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), WTF::currentTime());
2657 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey());
2670 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
2975 bool metaKey; local
2976 PlatformKeyboardEvent::getCurrentModifierState(shiftKey, ctrlKey, altKey, metaKey);
[all...]

Completed in 213 milliseconds