Searched defs:globalPosition (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DDragData.h57 DragData(ChromiumDataObject*, const IntPoint& clientPosition, const IntPoint& globalPosition, DragOperation, DragApplicationFlags = DragApplicationNone);
58 DragData(const String& dragStorageName, const IntPoint& clientPosition, const IntPoint& globalPosition, DragOperation, DragApplicationFlags = DragApplicationNone);
60 const IntPoint& globalPosition() const { return m_globalPosition; } function in class:WebCore::DragData
H A DPlatformGestureEvent.h45 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, float deltaX, float deltaY, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
48 , m_globalPosition(globalPosition)
54 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, const IntSize& area, const FloatPoint& delta, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
57 , m_globalPosition(globalPosition)
65 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates. function in class:WebCore::PlatformGestureEvent
H A DPlatformMouseEvent.h47 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, argument
51 , m_globalPosition(globalPosition)
59 const IntPoint& globalPosition() const { return m_globalPosition; } function in class:WebCore::PlatformMouseEvent
H A DDragData.cpp47 DragData::DragData(ChromiumDataObject* data, const IntPoint& clientPosition, const IntPoint& globalPosition, argument
50 , m_globalPosition(globalPosition)
57 DragData::DragData(const String&, const IntPoint& clientPosition, const IntPoint& globalPosition, argument
60 , m_globalPosition(globalPosition)
H A DPlatformWheelEvent.h80 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
83 , m_globalPosition(globalPosition)
114 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates. function in class:WebCore::PlatformWheelEvent
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp184 m_screenPos = event.globalPosition();
1711 0, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(),
2334 PlatformMouseEvent fakeMouseMove(adjustedPoint, gestureEvent.globalPosition(),
2346 PlatformMouseEvent fakeMouseDown(adjustedPoint, gestureEvent.globalPosition(),
2351 PlatformMouseEvent fakeMouseUp(adjustedPoint, gestureEvent.globalPosition(),
2369 PlatformMouseEvent mouseDownEvent(adjustedPoint, gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, 1,
2373 PlatformMouseEvent mouseDragEvent(adjustedPoint, gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseMoved, 1,
2572 IntPoint globalPoint(gestureEvent.globalPosition().x(), gestureEvent.globalPosition()
2762 IntPoint globalPosition = view->hostWindow()->rootViewToScreen(IntRect(position, IntSize())).location(); local
[all...]

Completed in 166 milliseconds