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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformTouchEvent.h 23 #include "platform/PlatformEvent.h"
29 class PlatformTouchEvent : public PlatformEvent {
32 : PlatformEvent(PlatformEvent::TouchStart)
PlatformGestureEvent.h 29 #include "platform/PlatformEvent.h"
38 class PlatformGestureEvent : public PlatformEvent {
41 : PlatformEvent(PlatformEvent::GestureScrollBegin)
47 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
52 ASSERT(type == PlatformEvent::GestureScrollBegin
53 || type == PlatformEvent::GestureScrollEnd
54 || type == PlatformEvent::GestureScrollUpdate
55 || type == PlatformEvent::GestureScrollUpdateWithoutPropagation);
70 ASSERT(m_type == PlatformEvent::GestureScrollUpdat
    [all...]
PlatformMouseEvent.h 29 #include "platform/PlatformEvent.h"
37 class PlatformMouseEvent : public PlatformEvent {
45 : PlatformEvent(PlatformEvent::MouseMoved)
53 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, double timestamp)
54 : PlatformEvent(type, modifiers, timestamp)
64 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, SyntheticEventType synthesized, double timestamp)
65 : PlatformEvent(type, modifiers, timestamp)
75 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
76 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp
    [all...]
PlatformEvent.h 31 class PlatformEvent {
95 PlatformEvent()
102 explicit PlatformEvent(Type type)
109 PlatformEvent(Type type, Modifiers modifiers, double timestamp)
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
132 // delete a PlatformEvent.
133 ~PlatformEvent()
PlatformKeyboardEvent.h 30 #include "platform/PlatformEvent.h"
36 class PlatformKeyboardEvent : public PlatformEvent {
40 : PlatformEvent(PlatformEvent::KeyDown)
51 : PlatformEvent(type, modifiers, timestamp)
PlatformKeyboardEvent.cpp 51 ASSERT(m_type == PlatformEvent::KeyDown);
52 ASSERT(type == PlatformEvent::RawKeyDown || type == PlatformEvent::Char);
PlatformWheelEvent.h 29 #include "platform/PlatformEvent.h"
59 class PlatformWheelEvent : public PlatformEvent {
62 : PlatformEvent(PlatformEvent::Wheel)
81 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0)
  /external/chromium_org/third_party/WebKit/Source/core/events/
GestureEvent.cpp 44 case PlatformEvent::GestureScrollBegin:
46 case PlatformEvent::GestureScrollEnd:
48 case PlatformEvent::GestureScrollUpdate:
49 case PlatformEvent::GestureScrollUpdateWithoutPropagation:
56 case PlatformEvent::GestureTap:
58 case PlatformEvent::GestureTapUnconfirmed:
60 case PlatformEvent::GestureTapDown:
62 case PlatformEvent::GestureShowPress:
64 case PlatformEvent::GestureTwoFingerTap:
65 case PlatformEvent::GestureLongPress
    [all...]
KeyboardEvent.cpp 32 static inline const AtomicString& eventTypeForKeyboardEventType(PlatformEvent::Type type)
35 case PlatformEvent::KeyUp:
37 case PlatformEvent::RawKeyDown:
39 case PlatformEvent::Char:
41 case PlatformEvent::KeyDown:
MouseEvent.cpp 56 ASSERT(event.type() == PlatformEvent::MouseMoved || event.button() != NoButton);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 69 SyntheticInspectorTouchEvent(const WebCore::PlatformEvent::Type type, unsigned modifiers, double timestamp)
104 PlatformEvent::Type convertedType;
106 convertedType = PlatformEvent::KeyDown;
108 convertedType = PlatformEvent::KeyUp;
110 convertedType = PlatformEvent::Char;
112 convertedType = PlatformEvent::RawKeyDown;
129 static_cast<PlatformEvent::Modifiers>(modifiers ? *modifiers : 0),
140 PlatformEvent::Type convertedType;
142 convertedType = PlatformEvent::MousePressed;
144 convertedType = PlatformEvent::MouseReleased
    [all...]
InspectorController.cpp 334 if (event.type() == PlatformEvent::MouseMoved) {
339 if (event.type() == PlatformEvent::MousePressed) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 92 m_modifiers |= PlatformEvent::ShiftKey;
94 m_modifiers |= PlatformEvent::CtrlKey;
96 m_modifiers |= PlatformEvent::AltKey;
98 m_modifiers |= PlatformEvent::MetaKey;
107 m_type = PlatformEvent::MouseMoved;
111 m_type = PlatformEvent::MousePressed;
115 m_type = PlatformEvent::MouseReleased;
139 m_type = PlatformEvent::Wheel;
143 m_modifiers |= PlatformEvent::ShiftKey;
145 m_modifiers |= PlatformEvent::CtrlKey
    [all...]
PopupContainer.cpp 292 case PlatformEvent::GestureTap: {
293 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
294 PlatformMouseEvent fakeMouseDown(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
295 PlatformMouseEvent fakeMouseUp(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseReleased, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
301 case PlatformEvent::GestureScrollUpdate:
302 case PlatformEvent::GestureScrollUpdateWithoutPropagation: {
307 case PlatformEvent::GestureScrollBegin:
308 case PlatformEvent::GestureScrollEnd:
309 case PlatformEvent::GestureTapDown:
310 case PlatformEvent::GestureShowPress
    [all...]
WebAXObject.cpp 554 if (modifiers & PlatformEvent::CtrlKey)
556 if (modifiers & PlatformEvent::AltKey)
558 if (modifiers & PlatformEvent::ShiftKey)
560 if (modifiers & PlatformEvent::MetaKey)
  /external/chromium_org/third_party/WebKit/Source/web/tests/
KeyboardTest.cpp 55 PlatformEvent::Type keyType)
87 return interpretKeyEvent(keyboardEvent, PlatformEvent::RawKeyDown);
95 return interpretKeyEvent(keyboardEvent, PlatformEvent::RawKeyDown);
103 return interpretKeyEvent(keyboardEvent, PlatformEvent::Char);
111 return interpretKeyEvent(keyboardEvent, PlatformEvent::Char);
171 PlatformEvent::RawKeyDown);
PopupMenuTest.cpp 241 PlatformMouseEvent mouseEvent(point, point, LeftButton, PlatformEvent::MousePressed,
247 PlatformMouseEvent mouseEvent(point, point, LeftButton, PlatformEvent::MouseReleased,
373 PlatformMouseEvent mouseEvent(row1Point, row1Point, NoButton, PlatformEvent::MouseMoved,
WebInputEventConversionTest.cpp 244 PlatformMouseEvent platformMouseEvent(IntPoint(10, 10), IntPoint(10, 10), LeftButton, PlatformEvent::MouseMoved, 1, false, false, false, false, 0);
257 PlatformMouseEvent platformMouseEvent(IntPoint(10, 10), IntPoint(10, 10), NoButton, PlatformEvent::MouseMoved, 1, false, false, false, false, 0);
264 PlatformGestureEvent platformGestureEvent(PlatformEvent::GestureScrollUpdate, IntPoint(10, 10), IntPoint(10, 10), IntSize(10, 10), 0, false, false, false, false, 10, 10, 10, 10);
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 199 PlatformEvent::Type type = event.type();
200 ASSERT(type == PlatformEvent::MouseMoved || type == PlatformEvent::MousePressed || type == PlatformEvent::MouseReleased);
203 case PlatformEvent::MouseMoved:
206 case PlatformEvent::MousePressed:
209 case PlatformEvent::MouseReleased:
224 case PlatformEvent::MouseMoved:
227 case PlatformEvent::MousePressed:
230 case PlatformEvent::MouseReleased
    [all...]
DragController.cpp 116 shiftKey = static_cast<bool>(keyState & PlatformEvent::ShiftKey);
117 ctrlKey = static_cast<bool>(keyState & PlatformEvent::CtrlKey);
118 altKey = static_cast<bool>(keyState & PlatformEvent::AltKey);
119 metaKey = static_cast<bool>(keyState & PlatformEvent::MetaKey);
122 LeftButton, PlatformEvent::MouseMoved, 0, shiftKey, ctrlKey, altKey,
    [all...]
EventHandler.h 372 PlatformEvent::Type m_baseEventType;
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 350 case PlatformEvent::GestureTapDown:
354 case PlatformEvent::GestureTapDownCancel:
355 case PlatformEvent::GestureScrollBegin:
360 case PlatformEvent::GestureScrollUpdate:
361 case PlatformEvent::GestureScrollUpdateWithoutPropagation:
367 case PlatformEvent::GestureScrollEnd:
368 case PlatformEvent::GestureLongPress:
369 case PlatformEvent::GestureFlingStart:
374 case PlatformEvent::GestureTap: {
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditorKeyBindings.cpp 217 if (keyEvent->type() == PlatformEvent::RawKeyDown) {
236 if (keyEvent->type() == PlatformEvent::RawKeyDown) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 62 class PlatformEvent;
133 void resize(const PlatformEvent&, const LayoutSize&);
RenderLayerScrollableArea.cpp     [all...]

Completed in 470 milliseconds

1 2