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

1 2 3 4

  /external/webkit/Source/WebCore/dom/
UIEventWithKeyState.h 36 bool metaKey() const { return m_metaKey; }
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
53 , m_metaKey(metaKey)
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)
78 m_metaKey = metaKey;
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 37 readonly attribute boolean metaKey;
51 in boolean metaKey);
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)
72 m_metaKey = metaKey;
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)
100 m_metaKey = metaKey;
113 return metaKey();
KeyboardEvent.idl 39 readonly attribute boolean metaKey;
56 in boolean metaKey,
73 in boolean metaKey);
WheelEvent.idl 32 readonly attribute boolean metaKey;
58 in boolean metaKey);
72 in boolean metaKey);
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 31 readonly attribute boolean metaKey;
47 in boolean metaKey,
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,
85 m_metaKey = metaKey;
150 m_metaKey = keyStateEvent->metaKey();
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)
42 , m_metaKey(metaKey)
WebEventConversion.cpp 75 m_metaKey = webEvent.metaKey();
85 m_modifierFlags |= WebEvent::MetaKey;
112 m_metaKey = webEvent.metaKey();
157 m_metaKey = webEvent.metaKey();
259 m_metaKey = webEvent.metaKey();
  /external/webkit/Source/WebCore/platform/chromium/
PlatformKeyboardEventChromium.cpp 89 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
95 metaKey = false;
101 metaKey = currentModifiers & ::cmdKey;
  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 98 MetaKey = 1 << 2,
155 bool metaKey() const { return m_metaKey; }
159 | (metaKey() ? MetaKey : 0)
164 static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
PlatformTouchEvent.h 85 bool metaKey() const { return m_metaKey; }
PlatformMouseEvent.h 128 bool metaKey() const { return m_metaKey; }
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)
222 metaKey = false;
  /external/webkit/Source/WebCore/platform/mac/
PlatformMouseEventMac.mm 162 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp,
172 , m_metaKey(metaKey)
  /external/webkit/Source/WebCore/platform/android/
KeyEventAndroid.cpp 254 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
260 metaKey = false;
  /external/webkit/Source/WebCore/platform/brew/
PlatformKeyboardEventBrew.cpp 252 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
258 metaKey = false;

Completed in 201 milliseconds

1 2 3 4