Home
last modified time | relevance | path

Searched refs:adjustedPoint (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
DTouchAdjustment.cpp397 …argetGeometry& geom, const IntPoint& touchPoint, const IntRect& touchArea, IntPoint& adjustedPoint) in snapTo() argument
407 adjustedPoint = touchPoint; in snapTo()
412 adjustedPoint = bounds.center(); in snapTo()
431 adjustedPoint = touchPoint; in snapTo()
439 adjustedPoint = roundedIntPoint(center); in snapTo()
441 return quad.containsPoint(adjustedPoint); in snapTo()
453 IntPoint adjustedPoint; in findNodeWithLowestDistanceMetric() local
459 if (snapTo(*it, touchHotspot, touchArea, adjustedPoint)) { in findNodeWithLowestDistanceMetric()
460 targetPoint = adjustedPoint; in findNodeWithLowestDistanceMetric()
466 if (snapTo(*it, touchHotspot, touchArea, adjustedPoint)) { in findNodeWithLowestDistanceMetric()
[all …]
DEventHandler.h154 void adjustGesturePosition(const PlatformGestureEvent&, IntPoint& adjustedPoint);
207 bool handleGestureTap(const PlatformGestureEvent&, const IntPoint& adjustedPoint);
208 bool handleGestureLongPress(const PlatformGestureEvent&, const IntPoint& adjustedPoint);
209 bool handleGestureLongTap(const PlatformGestureEvent&, const IntPoint& adjustedPoint);
210 bool handleGestureTwoFingerTap(const PlatformGestureEvent&, const IntPoint& adjustedPoint);
DEventHandler.cpp2067 IntPoint adjustedPoint = gestureEvent.position(); in handleGestureEvent() local
2089 adjustGesturePosition(gestureEvent, adjustedPoint); in handleGestureEvent()
2090 subframe = getSubFrameForGestureEvent(adjustedPoint, gestureEvent); in handleGestureEvent()
2134 IntPoint hitTestPoint = m_frame->view()->windowToContents(adjustedPoint); in handleGestureEvent()
2193 return handleGestureTap(gestureEvent, adjustedPoint); in handleGestureEvent()
2197 return handleGestureLongPress(gestureEvent, adjustedPoint); in handleGestureEvent()
2199 return handleGestureLongTap(gestureEvent, adjustedPoint); in handleGestureEvent()
2201 return handleGestureTwoFingerTap(gestureEvent, adjustedPoint); in handleGestureEvent()
2217 …tHandler::handleGestureTap(const PlatformGestureEvent& gestureEvent, const IntPoint& adjustedPoint) in handleGestureTap() argument
2232 PlatformMouseEvent fakeMouseMove(adjustedPoint, gestureEvent.globalPosition(), in handleGestureTap()
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
DFontHarfBuzz.cpp186 FloatPoint adjustedPoint = shaper.adjustStartPoint(point); in drawComplexText() local
187 drawGlyphBuffer(gc, runInfo, glyphBuffer, adjustedPoint); in drawComplexText()
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.cpp1102 IntPoint adjustedPoint; in touchPositionAdjustedToBestClickableNode() local
1104 …->frame()->eventHandler().bestClickableNodeForTouchPoint(point, radius, adjustedPoint, targetNode); in touchPositionAdjustedToBestClickableNode()
1106 return DOMPoint::create(adjustedPoint.x(), adjustedPoint.y()); in touchPositionAdjustedToBestClickableNode()
1124 IntPoint adjustedPoint; in touchNodeAdjustedToBestClickableNode() local
1125 …document->frame()->eventHandler().bestClickableNodeForTouchPoint(point, radius, adjustedPoint, tar… in touchNodeAdjustedToBestClickableNode()
1142 IntPoint adjustedPoint; in touchPositionAdjustedToBestContextMenuNode() local
1144 …frame()->eventHandler().bestContextMenuNodeForTouchPoint(point, radius, adjustedPoint, targetNode); in touchPositionAdjustedToBestContextMenuNode()
1146 return DOMPoint::create(adjustedPoint.x(), adjustedPoint.y()); in touchPositionAdjustedToBestContextMenuNode()
1164 IntPoint adjustedPoint; in touchNodeAdjustedToBestContextMenuNode() local
1165 …document->frame()->eventHandler().bestContextMenuNodeForTouchPoint(point, radius, adjustedPoint, t… in touchNodeAdjustedToBestContextMenuNode()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderView.cpp924 LayoutPoint adjustedPoint = point; in updateHitTestResult() local
925 offsetForContents(adjustedPoint); in updateHitTestResult()
927 result.setLocalPoint(adjustedPoint); in updateHitTestResult()
DRenderBox.cpp4008 LayoutPoint adjustedPoint = point; in positionForPoint() local
4010 adjustedPoint.moveBy(location()); in positionForPoint()
4029 … return renderer->positionForPoint(point + adjustedPoint - renderer->locationOffset()); in positionForPoint()
4067 return closestRenderer->positionForPoint(adjustedPoint - closestRenderer->locationOffset()); in positionForPoint()