Lines Matching refs:fromY
67 final float fromY = size.y * 0.5f; in dragQuarterScreenDown() local
70 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenDown()
97 final float fromY = size.y * 0.5f; in dragQuarterScreenUp() local
100 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenUp()
234 float fromY = xy[1] + (viewHeight / 2.0f); in dragViewToBottom() local
237 drag(test, x, x, fromY, toY, stepCount); in dragViewToBottom()
477 float fromY = xy[1] + (viewHeight / 2.0f); in dragViewToTop() local
480 drag(test, x, x, fromY, toY, stepCount); in dragViewToTop()
571 final int fromY = xy[1]; in dragViewBy() local
575 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance); in dragViewBy()
621 final int fromY = xy[1]; in dragViewTo() local
624 int deltaY = fromY - toY; in dragViewTo()
627 drag(test, fromX, toX, fromY, toY, distance); in dragViewTo()
670 final int fromY = xy[1]; in dragViewToX() local
674 drag(test, fromX, toX, fromY, fromY, deltaX); in dragViewToX()
717 final int fromY = xy[1]; in dragViewToY() local
719 int deltaY = fromY - toY; in dragViewToY()
721 drag(test, fromX, fromX, fromY, toY, deltaY); in dragViewToY()
743 float fromY, float toY, int stepCount) { 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
764 float y = fromY; in drag()
767 float yStep = (toY - fromY) / stepCount; in drag()