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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/dom/
UIEventWithKeyState.h 35 bool altKey() const { return m_altKey; }
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
51 , m_altKey(altKey)
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);
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);
KeyboardEvent.cpp 93 , altKey(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)
154 m_altKey = altKey;
168 return altKey();
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)
77 m_altKey = altKey;
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);
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)
75 m_altKey = altKey;
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)
100 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
KeyboardEvent.h 42 bool altKey;
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);
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)
81 m_altKey = altKey;
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()));
MouseEvent.cpp 43 , altKey(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
    [all...]
KeyboardEvent.idl 38 [InitializedByEventConstructor] readonly attribute boolean altKey;
52 [Default=Undefined] optional boolean altKey,
TouchEvent.idl 31 readonly attribute boolean altKey;
44 [Default=Undefined] optional boolean altKey,
MouseEvent.h 44 bool altKey;
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,
MouseEvent.idl 29 [InitializedByEventConstructor] readonly attribute boolean altKey;
46 [Default=Undefined] optional boolean altKey,
WheelEvent.idl 45 [Default=Undefined] optional boolean altKey,
MouseRelatedEvent.h 66 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated = false);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElementWin.cpp 40 bool eventShowsMenu = (!event->altKey() && !event->ctrlKey() && event->keyIdentifier() == "F4")
41 || ((event->altGraphKey() || event->altKey()) && (event->keyIdentifier() == "Down" || event->keyIdentifier() == "Up"));
  /external/chromium_org/third_party/WebKit/Source/core/platform/
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)
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)
55 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
PlatformMouseEvent.h 48 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
49 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
PlatformEvent.h 75 AltKey = 1 << 0,
85 bool altKey() const { return m_modifiers & AltKey; }
114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
123 if (altKey)
124 m_modifiers |= AltKey;
PlatformWheelEvent.h 80 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
81 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0)
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
PlatformKeyboardEventChromium.cpp 87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
92 altKey = GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT;
98 altKey = currentModifiers & ::optionKey;
103 altKey = false;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
keycodes.js 68 if (evt.altKey) {
91 altKey: true,
  /external/chromium_org/chrome/renderer/resources/extensions/
experimental.offscreenTabs_custom_bindings.js 23 altKey: e.altKey,
36 altKey: e.altKey,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
InspectorView.js 164 if (panelShortcutEnabled && !event.shiftKey && !event.altKey && event.keyCode > 0x30 && event.keyCode < 0x3A) {
187 var isRotateLeft = !event.shiftKey && !event.altKey;
196 var isGoBack = event.altKey;
205 var isRotateRight = !event.shiftKey && !event.altKey;
214 var isGoForward = event.altKey;

Completed in 1086 milliseconds

1 2 3 4