Home | History | Annotate | Download | only in test

Lines Matching defs:deltaX

532      * @param deltaX Amount to drag horizontally in pixels
543 int deltaX, int deltaY) {
544 return dragViewBy((InstrumentationTestCase) test, v, gravity, deltaX, deltaY);
554 * @param deltaX Amount to drag horizontally in pixels
564 public static int dragViewBy(InstrumentationTestCase test, View v, int gravity, int deltaX,
573 int distance = (int) Math.hypot(deltaX, deltaY);
575 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance);
623 int deltaX = fromX - toX;
626 int distance = (int)Math.hypot(deltaX, deltaY);
672 int deltaX = fromX - toX;
674 drag(test, fromX, toX, fromY, fromY, deltaX);
676 return deltaX;