Lines Matching refs:fromX
570 final int fromX = xy[0]; in dragViewBy() local
575 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance); in dragViewBy()
620 final int fromX = xy[0]; in dragViewTo() local
623 int deltaX = fromX - toX; in dragViewTo()
627 drag(test, fromX, toX, fromY, toY, distance); in dragViewTo()
669 final int fromX = xy[0]; in dragViewToX() local
672 int deltaX = fromX - toX; in dragViewToX()
674 drag(test, fromX, toX, fromY, fromY, deltaX); in dragViewToX()
716 final int fromX = xy[0]; in dragViewToY() local
721 drag(test, fromX, fromX, fromY, toY, deltaY); in dragViewToY()
742 public static void drag(ActivityInstrumentationTestCase test, float fromX, float toX, in drag() argument
744 drag((InstrumentationTestCase) test, fromX, toX, fromY, toY, stepCount); in drag() local
757 public static void drag(InstrumentationTestCase test, float fromX, float toX, float fromY, in drag() argument
765 float x = fromX; in drag()
768 float xStep = (toX - fromX) / stepCount; in drag()