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

1 2 3

  /external/webkit/WebCore/dom/
UIEventWithKeyState.h 33 bool ctrlKey() const { return m_ctrlKey; }
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
50 , m_ctrlKey(ctrlKey)
TouchEvent.cpp 37 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
39 ctrlKey, altKey, shiftKey, metaKey)
49 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
58 m_ctrlKey = ctrlKey;
WheelEvent.h 40 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
43 ctrlKey, altKey, shiftKey, metaKey));
48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
61 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
TouchEvent.h 46 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
50 ctrlKey, altKey, shiftKey, metaKey));
57 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
69 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
TouchEvent.idl 34 readonly attribute boolean ctrlKey;
48 in boolean ctrlKey,
WheelEvent.cpp 39 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
42 ctrlKey, altKey, shiftKey, metaKey)
50 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
59 m_ctrlKey = ctrlKey;
KeyboardEvent.cpp 62 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
72 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
73 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
87 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
96 m_ctrlKey = ctrlKey;
106 return ctrlKey();
KeyboardEvent.idl 36 readonly attribute boolean ctrlKey;
53 in boolean ctrlKey,
70 in boolean ctrlKey,
KeyboardEvent.h 64 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
67 ctrlKey, altKey, shiftKey, metaKey, altGraphKey));
73 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false);
100 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
MouseEvent.cpp 38 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
42 pageX, pageY, ctrlKey, altKey, shiftKey, metaKey, isSimulated)
56 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
66 m_ctrlKey = ctrlKey;
MouseEvent.h 41 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
45 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipboard, isSimulated));
51 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
75 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
MouseEvent.idl 28 readonly attribute boolean ctrlKey;
44 in boolean ctrlKey,
WheelEvent.idl 29 readonly attribute boolean ctrlKey;
55 in boolean ctrlKey,
MouseRelatedEvent.h 60 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated = false);
MouseRelatedEvent.cpp 78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated)
79 : UIEventWithKeyState(eventType, canBubble, cancelable, viewArg, detail, ctrlKey, altKey, shiftKey, metaKey)
  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 258 kevent->ctrlKey() ? WordGranularity : CharacterGranularity,
263 kevent->ctrlKey() ? WordGranularity : CharacterGranularity,
269 kevent->ctrlKey() ? WordGranularity : CharacterGranularity,
275 kevent->ctrlKey() ? WordGranularity : CharacterGranularity,
281 kevent->ctrlKey() ? ParagraphGranularity : LineGranularity,
287 kevent->ctrlKey() ? ParagraphGranularity : LineGranularity,
302 if (!kevent->ctrlKey() && !kevent->altKey() && !kevent->text().isEmpty()) {
310 } else if (kevent->ctrlKey()) {
356 if (kevent->ctrlKey())
360 if (kevent->ctrlKey())
    [all...]
  /external/webkit/WebCore/platform/
PlatformTouchEvent.h 69 bool ctrlKey() const { return m_ctrlKey; }
PlatformKeyboardEvent.h 86 CtrlKey = 1 << 1,
120 bool ctrlKey() const { return m_ctrlKey; }
125 | (ctrlKey() ? CtrlKey : 0)
PlatformMouseEvent.h 110 bool ctrlKey() const { return m_ctrlKey; }
128 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp,
PlatformWheelEvent.h 98 bool ctrlKey() const { return m_ctrlKey; }
  /external/webkit/WebCore/platform/mac/
PlatformMouseEventMac.mm 162 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp,
170 , m_ctrlKey(ctrlKey)
  /external/webkit/WebCore/inspector/front-end/
KeyboardShortcut.js 104 if (keyboardEvent.ctrlKey)
  /external/webkit/WebKit/win/Interfaces/
DOMEvents.idl 178 //readonly attribute boolean ctrlKey;
179 HRESULT ctrlKey([out, retval] BOOL* result);
203 // in boolean ctrlKey,
208 HRESULT initKeyboardEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMWindow* view, [in] BSTR keyIdentifier, [in] unsigned long keyLocation, [in] BOOL ctrlKey, [in] BOOL altKey, [in] BOOL shiftKey, [in] BOOL metaKey, [in] BOOL graphKey);
223 // in boolean ctrlKey,
249 //readonly attribute boolean ctrlKey;
250 HRESULT ctrlKey([out, retval] BOOL* result);
276 // in boolean ctrlKey,
282 HRESULT initMouseEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMWindow* view, [in] long detail, [in] long screenX, [in] long screenY, [in] long clientX, [in] long clientY, [in] BOOL ctrlKey, [in] BOOL altKey, [in] BOOL shiftKey, [in] BOOL metaKey, [in] unsigned short button, [in] IDOMEventTarget* relatedTarget);
429 //readonly attribute boolean ctrlKey;
    [all...]
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 446 if (kevent->type() != PlatformKeyboardEvent::KeyDown && !kevent->ctrlKey()
453 } else if (kevent->ctrlKey()) {
494 if (kevent->ctrlKey())
498 if (kevent->ctrlKey())
502 if (kevent->ctrlKey()) {
  /external/webkit/WebKit/win/
DOMEventsClasses.cpp 285 HRESULT STDMETHODCALLTYPE DOMKeyboardEvent::ctrlKey(
293 *result = keyEvent->ctrlKey() ? TRUE : FALSE;
359 /* [in] */ BOOL /*ctrlKey*/,
406 HRESULT STDMETHODCALLTYPE DOMMouseEvent::ctrlKey(
414 *result = mouseEvent->ctrlKey() ? TRUE : FALSE;
476 /* [in] */ BOOL /*ctrlKey*/,
649 HRESULT STDMETHODCALLTYPE DOMWheelEvent::ctrlKey(
729 /* [in] */ BOOL /*ctrlKey*/,

Completed in 158 milliseconds

1 2 3