Searched refs:m_ctrlKey (Results 1 - 25 of 42) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DUIEventWithKeyState.h33 bool ctrlKey() const { return m_ctrlKey; }
40 : m_ctrlKey(false)
50 , m_ctrlKey(ctrlKey)
58 bool m_ctrlKey : 1;
H A DTouchEvent.cpp75 m_ctrlKey = ctrlKey;
/external/webkit/Source/WebCore/platform/
H A DPlatformTouchEvent.h61 , m_ctrlKey(false)
82 bool ctrlKey() const { return m_ctrlKey; }
93 bool m_ctrlKey; member in class:WebCore::PlatformTouchEvent
H A DPlatformWheelEvent.h97 , m_ctrlKey(false)
122 bool ctrlKey() const { return m_ctrlKey; }
191 bool m_ctrlKey; member in class:WebCore::PlatformWheelEvent
H A DPlatformMouseEvent.h83 , m_ctrlKey(false)
104 , m_ctrlKey(ctrl)
126 bool ctrlKey() const { return m_ctrlKey; }
187 bool m_ctrlKey; member in class:WebCore::PlatformMouseEvent
H A DPlatformKeyboardEvent.h109 , m_ctrlKey(false)
153 bool ctrlKey() const { return m_ctrlKey; }
230 bool m_ctrlKey; member in class:WebCore::PlatformKeyboardEvent
/external/webkit/Source/WebCore/platform/haiku/
H A DPlatformWheelEventHaiku.cpp57 m_ctrlKey = modifiers & B_CONTROL_KEY;
H A DPlatformMouseEventHaiku.cpp74 m_ctrlKey = modifiers & B_CONTROL_KEY;
/external/webkit/Source/WebCore/platform/wx/
H A DMouseWheelEventWx.cpp40 , m_ctrlKey(event.ControlDown())
H A DMouseEventWx.cpp40 , m_ctrlKey(event.CmdDown() || event.ControlDown())
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformMouseEventEfl.cpp56 , m_ctrlKey(evas_key_modifier_is_set(event->modifiers, "Control"))
70 , m_ctrlKey(evas_key_modifier_is_set(event->modifiers, "Control"))
85 , m_ctrlKey(evas_key_modifier_is_set(event->modifiers, "Control"))
H A DPlatformTouchEventEfl.cpp39 , m_ctrlKey(false)
H A DPlatformWheelEventEfl.cpp51 , m_ctrlKey(evas_key_modifier_is_set(ev->modifiers, "Control"))
/external/webkit/Source/WebCore/platform/android/
H A DPlatformTouchEventAndroid.cpp53 m_ctrlKey = metaState & META_SYM_ON;
/external/webkit/Source/WebCore/platform/brew/
H A DPlatformMouseEventBrew.cpp64 m_ctrlKey = keyModifiers & (KB_LCTRL | KB_RCTRL);
H A DPlatformTouchEventBrew.cpp71 m_ctrlKey = keyModifiers & (KB_LCTRL | KB_RCTRL);
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformWheelEventGtk.cpp67 m_ctrlKey = event->state & GDK_CONTROL_MASK;
H A DPlatformMouseEventGtk.cpp45 m_ctrlKey = event->state & GDK_CONTROL_MASK;
84 m_ctrlKey = motion->state & GDK_CONTROL_MASK;
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformTouchEventQt.cpp42 m_ctrlKey = (event->modifiers() & Qt::ControlModifier);
H A DWheelEventQt.cpp67 , m_ctrlKey(e->modifiers() & Qt::ControlModifier)
86 , m_ctrlKey(e->modifiers() & Qt::ControlModifier)
H A DPlatformMouseEventQt.cpp69 m_ctrlKey = (event->modifiers() & Qt::ControlModifier);
125 m_ctrlKey = (event->modifiers() & Qt::ControlModifier);
/external/webkit/Source/WebKit2/Shared/
H A DWebTouchEvent.cpp39 , m_ctrlKey(ctrlKey)
H A DWebEventConversion.cpp73 m_ctrlKey = webEvent.controlKey();
80 if (m_ctrlKey)
110 m_ctrlKey = webEvent.controlKey();
155 m_ctrlKey = webEvent.controlKey();
256 m_ctrlKey = webEvent.controlKey();
/external/webkit/Source/WebCore/platform/win/
H A DWheelEventWin.cpp71 , m_ctrlKey(false)
95 , m_ctrlKey(wParam & MK_CONTROL)
/external/webkit/Source/WebCore/platform/mac/
H A DPlatformMouseEventMac.mm152 , m_ctrlKey([event modifierFlags] & NSControlKeyMask)
170 , m_ctrlKey(ctrlKey)

Completed in 215 milliseconds

12