Home | History | Annotate | Download | only in test

Lines Matching refs:deltaY

538      * @param deltaY Amount to drag vertically in pixels
548 int deltaX, int deltaY) {
549 return dragViewBy((InstrumentationTestCase) test, v, gravity, deltaX, deltaY);
560 * @param deltaY Amount to drag vertically in pixels
570 int deltaY) {
578 int distance = (int) Math.sqrt(deltaX * deltaX + deltaY * deltaY);
580 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance);
629 int deltaY = fromY - toY;
631 int distance = (int)Math.sqrt(deltaX * deltaX + deltaY * deltaY);
724 int deltaY = fromY - toY;
726 drag(test, fromX, fromX, fromY, toY, deltaY);
728 return deltaY;