Home | History | Annotate | Download | only in page

Lines Matching refs:adjustedPoint

2067     IntPoint adjustedPoint = gestureEvent.position();
2089 adjustGesturePosition(gestureEvent, adjustedPoint);
2090 subframe = getSubFrameForGestureEvent(adjustedPoint, gestureEvent);
2134 IntPoint hitTestPoint = m_frame->view()->windowToContents(adjustedPoint);
2193 return handleGestureTap(gestureEvent, adjustedPoint);
2197 return handleGestureLongPress(gestureEvent, adjustedPoint);
2199 return handleGestureLongTap(gestureEvent, adjustedPoint);
2201 return handleGestureTwoFingerTap(gestureEvent, adjustedPoint);
2217 bool EventHandler::handleGestureTap(const PlatformGestureEvent& gestureEvent, const IntPoint& adjustedPoint)
2232 PlatformMouseEvent fakeMouseMove(adjustedPoint, gestureEvent.globalPosition(),
2238 PlatformMouseEvent fakeMouseDown(adjustedPoint, gestureEvent.globalPosition(),
2243 PlatformMouseEvent fakeMouseUp(adjustedPoint, gestureEvent.globalPosition(),
2251 bool EventHandler::handleGestureLongPress(const PlatformGestureEvent& gestureEvent, const IntPoint& adjustedPoint)
2255 PlatformMouseEvent mouseDownEvent(adjustedPoint, gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, 1,
2259 PlatformMouseEvent mouseDragEvent(adjustedPoint, gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseMoved, 1,
2294 bool EventHandler::handleGestureLongTap(const PlatformGestureEvent& gestureEvent, const IntPoint& adjustedPoint)
2332 bool EventHandler::handleGestureTwoFingerTap(const PlatformGestureEvent& gestureEvent, const IntPoint& adjustedPoint)
2555 void EventHandler::adjustGesturePosition(const PlatformGestureEvent& gestureEvent, IntPoint& adjustedPoint)
2566 bestClickableNodeForTouchPoint(gestureEvent.position(), IntSize(gestureEvent.area().width() / 2, gestureEvent.area().height() / 2), adjustedPoint, targetNode);
2571 bestContextMenuNodeForTouchPoint(gestureEvent.position(), IntSize(gestureEvent.area().width() / 2, gestureEvent.area().height() / 2), adjustedPoint, targetNode);
2691 IntPoint adjustedPoint = event.position();
2692 adjustGesturePosition(event, adjustedPoint);
2693 PlatformMouseEvent mouseEvent(adjustedPoint, event.globalPosition(), RightButton, eventType, 1, false, false, false, false, WTF::currentTime());