Home | History | Annotate | Download | only in test

Lines Matching defs:deltaY

539      * @param deltaY Amount to drag vertically in pixels
549 int deltaX, int deltaY) {
550 return dragViewBy((InstrumentationTestCase) test, v, gravity, deltaX, deltaY);
561 * @param deltaY Amount to drag vertically in pixels
571 int deltaY) {
579 int distance = (int) Math.sqrt(deltaX * deltaX + deltaY * deltaY);
581 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance);
630 int deltaY = fromY - toY;
632 int distance = (int)Math.sqrt(deltaX * deltaX + deltaY * deltaY);
725 int deltaY = fromY - toY;
727 drag(test, fromX, fromX, fromY, toY, deltaY);
729 return deltaY;