Home | History | Annotate | Download | only in test

Lines Matching refs:fromY

61         final float fromY = size.y * 0.5f;
64 drag(test, x, x, fromY, toY, 4);
91 final float fromY = size.y * 0.5f;
94 drag(test, x, x, fromY, toY, 4);
240 float fromY = xy[1] + (viewHeight / 2.0f);
243 drag(test, x, x, fromY, toY, stepCount);
483 float fromY = xy[1] + (viewHeight / 2.0f);
486 drag(test, x, x, fromY, toY, stepCount);
577 final int fromY = xy[1];
581 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance);
627 final int fromY = xy[1];
630 int deltaY = fromY - toY;
633 drag(test, fromX, toX, fromY, toY, distance);
676 final int fromY = xy[1];
680 drag(test, fromX, toX, fromY, fromY, deltaX);
723 final int fromY = xy[1];
725 int deltaY = fromY - toY;
727 drag(test, fromX, fromX, fromY, toY, deltaY);
739 * @param fromY X coordinate of the initial touch, in screen coordinates
749 float fromY, float toY, int stepCount) {
750 drag((InstrumentationTestCase) test, fromX, toX, fromY, toY, stepCount);
759 * @param fromY X coordinate of the initial touch, in screen coordinates
763 public static void drag(InstrumentationTestCase test, float fromX, float toX, float fromY,
770 float y = fromY;
773 float yStep = (toY - fromY) / stepCount;