HomeSort by relevance Sort by last modified time
    Searched refs:globalPosition (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformMouseEvent.h 55 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, double timestamp)
58 , m_globalPosition(globalPosition)
66 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, SyntheticEventType synthesized, double timestamp)
69 , m_globalPosition(globalPosition)
77 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, SyntheticEventType synthesized, double timestamp)
80 , m_globalPosition(globalPosition)
89 const IntPoint& globalPosition() const { return m_globalPosition; }
PlatformWheelEvent.h 78 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
81 , m_globalPosition(globalPosition)
101 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates.
PlatformGestureEvent.h 46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY)
49 , m_globalPosition(globalPosition)
65 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates.
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragData.h 56 DragData(DataObject*, const IntPoint& clientPosition, const IntPoint& globalPosition, DragOperation, DragApplicationFlags = DragApplicationNone);
57 DragData(const String& dragStorageName, const IntPoint& clientPosition, const IntPoint& globalPosition, DragOperation, DragApplicationFlags = DragApplicationNone);
59 const IntPoint& globalPosition() const { return m_globalPosition; }
DragData.cpp 42 DragData::DragData(DataObject* data, const IntPoint& clientPosition, const IntPoint& globalPosition,
45 , m_globalPosition(globalPosition)
52 DragData::DragData(const String&, const IntPoint& clientPosition, const IntPoint& globalPosition,
55 , m_globalPosition(globalPosition)
EventHandler.cpp     [all...]
DragController.cpp 120 return PlatformMouseEvent(dragData->clientPosition(), dragData->globalPosition(),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
GestureEvent.cpp 68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
WheelEvent.cpp 111 deltaMode(event), view, event.globalPosition(), event.position(),
MouseEvent.cpp 62 detail, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(),
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 252 EXPECT_EQ(10, platformMouseBuilder.globalPosition().x());
253 EXPECT_EQ(10, platformMouseBuilder.globalPosition().y());
271 EXPECT_EQ(10, platformGestureBuilder.globalPosition().x());
272 EXPECT_EQ(10, platformGestureBuilder.globalPosition().y());
458 EXPECT_EQ(100, platformMouseBuilder.globalPosition().x());
459 EXPECT_EQ(110, platformMouseBuilder.globalPosition().y());
477 EXPECT_EQ(100, platformGestureBuilder.globalPosition().x());
478 EXPECT_EQ(110, platformGestureBuilder.globalPosition().y());
603 EXPECT_EQ(10.f, platformGestureBuilder.globalPosition().x());
604 EXPECT_EQ(10.f, platformGestureBuilder.globalPosition().y())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 312 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), PlatformMouseEvent::FromTouch, gestureEvent.timestamp());
313 PlatformMouseEvent fakeMouseDown(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), PlatformMouseEvent::FromTouch, gestureEvent.timestamp());
314 PlatformMouseEvent fakeMouseUp(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseReleased, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), PlatformMouseEvent::FromTouch, gestureEvent.timestamp());
322 PlatformWheelEvent syntheticWheelEvent(gestureEvent.position(), gestureEvent.globalPosition(), gestureEvent.deltaX(), gestureEvent.deltaY(), gestureEvent.deltaX() / 120.0f, gestureEvent.deltaY() / 120.0f, ScrollByPixelWheelEvent, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey());
WebInputEventConversion.cpp 638 globalX = event.globalPosition().x();
639 globalY = event.globalPosition().y();

Completed in 1325 milliseconds