/external/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/ |
H A D | inject.js | 6 var modifier = event.ctrlKey || event.metaKey;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | UIEventWithKeyState.h | 36 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 D | KeyboardEvent.cpp | 95 , metaKey(false) 108 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey()) 118 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey) 128 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) 129 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey) 143 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) 155 m_metaKey = metaKey; 170 return metaKey(); 126 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 141 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 D | TouchEvent.cpp | 46 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) 50 ctrlKey, altKey, shiftKey, metaKey) 65 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) 79 m_metaKey = metaKey; 43 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 62 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 D | GestureEvent.cpp | 64 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(), event.deltaX(), event.deltaY())); 67 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 77 m_metaKey = metaKey; 99 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 100 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
|
H A D | KeyboardEvent.h | 44 bool metaKey; member in struct:WebCore::KeyboardEventInit 76 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) 79 ctrlKey, altKey, shiftKey, metaKey, altGraphKey)); 86 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false); 110 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey); 74 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 D | WheelEvent.h | 66 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) 69 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice)); 74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 97 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice); 63 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
|
H A D | WheelEvent.cpp | 56 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) 61 ctrlKey, altKey, shiftKey, metaKey, 0, 0, 0, false) 72 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) 83 m_metaKey = metaKey; 97 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) 100 ctrlKey, altKey, shiftKey, metaKey); 130 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.directionInvertedFromDevice())); 54 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 70 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 95 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 D | MouseEvent.cpp | 45 , metaKey(false) 67 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(), 74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, 81 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, 0, false); 87 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, 93 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipboard, isSimulated)); 106 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, 112 ctrlKey, altKey, shiftKey, metaKey, isSimulated) 125 initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSimulated */) 141 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, 71 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 84 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 103 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 139 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 D | KeyboardEvent.idl | 39 [InitializedByEventConstructor] readonly attribute boolean metaKey; 54 [Default=Undefined] optional boolean metaKey,
|
H A D | TouchEvent.h | 48 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 D | TouchEvent.idl | 32 readonly attribute boolean metaKey; 46 [Default=Undefined] optional boolean metaKey);
|
H A D | GestureEvent.h | 42 void initGestureEvent(const AtomicString& type, PassRefPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY); 51 GestureEvent(const AtomicString& type, PassRefPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
|
H A D | MouseEvent.h | 46 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, 105 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
|
H A D | MouseEvent.idl | 30 [InitializedByEventConstructor] readonly attribute boolean metaKey; 48 [Default=Undefined] optional boolean metaKey,
|
H A D | WheelEvent.idl | 47 [Default=Undefined] optional boolean metaKey);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
H A D | keycodes.js | 71 if (evt.metaKey) { 93 metaKey: false});
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
H A D | experimental.offscreenTabs_custom_bindings.js | 24 metaKey: e.metaKey, 37 metaKey: e.metaKey,
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
H A D | PlatformGestureEvent.h | 45 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, float deltaX, float deltaY, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument 46 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp) 54 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, const IntSize& area, const FloatPoint& delta, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument 55 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
|
H A D | PlatformMouseEvent.h | 48 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) 49 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp) 47 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
|
H A D | PlatformEvent.h | 86 bool metaKey() const { return m_modifiers & MetaKey; } function in class:WebCore::PlatformEvent 114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument 125 if (metaKey)
|
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/ |
H A D | PlatformKeyboardEventChromium.cpp | 87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey) argument 93 metaKey = false; 99 metaKey = currentModifiers & ::cmdKey; 104 metaKey = false;
|
/external/chromium_org/chrome/test/chromedriver/js/ |
H A D | dispatch_context_menu_event.js | 36 metaKey: modifiers & ModifierMask.META,
|
/external/chromium_org/chrome/browser/resources/chromeos/keyboard/ |
H A D | keyboard_utils.js | 16 if (event.ctrlKey || event.shiftKey || event.altKey || event.metaKey) 31 if (event.ctrlKey || event.shiftKey || event.altKey || event.metaKey)
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
H A D | dot_list.js | 48 if (e.metaKey || e.shiftKey || e.altKey || e.ctrlKey)
|