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

1 2 3 4 5

  /external/webkit/Source/WebCore/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 43 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
47 ctrlKey, altKey, shiftKey, metaKey));
52 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
56 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
73 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
TouchEvent.cpp 44 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
46 ctrlKey, altKey, shiftKey, metaKey)
63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
76 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);
76 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
TouchEvent.idl 36 readonly attribute boolean altKey;
49 in boolean altKey,
WheelEvent.cpp 46 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
49 ctrlKey, altKey, shiftKey, metaKey)
60 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
70 m_altKey = altKey;
87 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
90 ctrlKey, altKey, shiftKey, metaKey);
109 view, event.globalX(), event.globalY(), event.x(), event.y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey()));
KeyboardEvent.cpp 63 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
73 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
74 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
88 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
99 m_altKey = altKey;
111 return altKey();
KeyboardEvent.idl 38 readonly attribute boolean altKey;
54 in boolean altKey,
71 in boolean altKey,
WheelEvent.idl 31 readonly attribute boolean altKey;
56 in boolean altKey,
70 in boolean altKey,
KeyboardEvent.h 67 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
70 ctrlKey, altKey, shiftKey, metaKey, altGraphKey));
76 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false);
103 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
MouseEvent.h 44 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
48 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipboard, isSimulated));
56 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
80 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
MouseEvent.idl 30 readonly attribute boolean altKey;
45 in boolean altKey,
MouseEvent.cpp 42 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(),
54 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
58 pageX, pageY, ctrlKey, altKey, shiftKey, metaKey, isSimulated)
72 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
83 m_altKey = altKey;
148 m_altKey = keyStateEvent->altKey();
186 event()->ctrlKey(), event()->altKey(), event()->shiftKey(), event()->metaKey(),
MouseRelatedEvent.h 60 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated = false);
MouseRelatedEvent.cpp 79 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated)
80 : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
  /external/webkit/Source/WebKit2/Shared/
WebTouchEvent.cpp 36 WebTouchEvent::WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint> touchPoints, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers modifiers, double timestamp)
40 , m_altKey(altKey)
WebEventConversion.cpp 74 m_altKey = webEvent.altKey();
83 m_modifierFlags |= WebEvent::AltKey;
111 m_altKey = webEvent.altKey();
156 m_altKey = webEvent.altKey();
257 m_altKey = webEvent.altKey();
  /external/webkit/Source/WebCore/platform/chromium/
PlatformKeyboardEventChromium.cpp 89 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
94 altKey = GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT;
100 altKey = currentModifiers & ::optionKey;
  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 96 AltKey = 1 << 0,
154 bool altKey() const { return m_altKey; }
157 return (altKey() ? AltKey : 0)
164 static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
PlatformTouchEvent.h 83 bool altKey() const { return m_altKey; }
PlatformMouseEvent.h 127 bool altKey() const { return m_altKey; }
152 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp,
  /external/webkit/Source/WebCore/platform/win/
KeyEventWin.cpp 217 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
221 altKey = GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT;
  /external/webkit/Source/WebCore/platform/mac/
PlatformMouseEventMac.mm 162 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp,
171 , m_altKey(altKey)
  /external/webkit/Source/WebCore/platform/android/
KeyEventAndroid.cpp 225 , m_altKey(alt ? AltKey : 0)
254 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
259 altKey = false;
  /external/webkit/Source/WebCore/platform/brew/
PlatformKeyboardEventBrew.cpp 252 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
257 altKey = false;

Completed in 348 milliseconds

1 2 3 4 5