Home | History | Annotate | Download | only in accessibility

Lines Matching refs:deltaY

486                             final float deltaY = receivedTracker.getReceivedPointerDownY(pointerId)
488 final double moveDelta = Math.hypot(deltaX, deltaY);
529 final float deltaY =
532 final double moveDelta = Math.hypot(deltaX, deltaY);
566 final float deltaY = receivedTracker.getReceivedPointerDownY(pointerId)
568 final double moveDelta = Math.hypot(deltaX, deltaY);
704 final float deltaY = firstPtrY - secondPtrY;
705 final double distance = Math.hypot(deltaX, deltaY);
708 event.setLocation(deltaX / 2, deltaY / 2);
2121 final float deltaY = event.getY(pointerIndex) - mReceivedPointerDownY[pointerId];
2122 return (float) Math.hypot(deltaX, deltaY);