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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformGestureEvent.h 45 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, float deltaX, float deltaY, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
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)
57 , m_globalPosition(globalPosition)
65 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates.
PlatformMouseEvent.h 47 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type,
51 , m_globalPosition(globalPosition)
59 const IntPoint& globalPosition() const { return m_globalPosition; }
DragData.h 57 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; }
DragData.cpp 47 DragData::DragData(ChromiumDataObject* data, const IntPoint& clientPosition, const IntPoint& globalPosition,
50 , m_globalPosition(globalPosition)
57 DragData::DragData(const String&, const IntPoint& clientPosition, const IntPoint& globalPosition,
60 , m_globalPosition(globalPosition)
PlatformWheelEvent.h 80 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
83 , m_globalPosition(globalPosition)
114 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates.
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
MultiAdapterSpinner.java 113 int globalPosition = 0;
119 globalPosition += position;
123 globalPosition += a.getCount();
134 mSelectedPosition = globalPosition;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MultiAdapterSpinner.java 112 int globalPosition = 0;
118 globalPosition += position;
122 globalPosition += a.getCount();
133 mSelectedPosition = globalPosition;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
GestureEvent.cpp 64 return adoptRef(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.deltaX(), event.deltaY()));
WheelEvent.cpp 129 deltaMode(event), view, event.globalPosition(), event.position(),
MouseEvent.cpp 65 detail, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(),
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 129 EXPECT_EQ(10, platformMouseBuilder.globalPosition().x());
130 EXPECT_EQ(10, platformMouseBuilder.globalPosition().y());
148 EXPECT_EQ(10, platformGestureBuilder.globalPosition().x());
149 EXPECT_EQ(10, platformGestureBuilder.globalPosition().y());
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 296 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
297 PlatformMouseEvent fakeMouseDown(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
298 PlatformMouseEvent fakeMouseUp(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseReleased, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
306 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 570 globalX = event.globalPosition().x();
571 globalY = event.globalPosition().y();
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 184 m_screenPos = event.globalPosition();
    [all...]
DragController.cpp 119 return PlatformMouseEvent(dragData->clientPosition(), dragData->globalPosition(),
    [all...]

Completed in 2257 milliseconds