Searched defs:maxSwipes (Results 1 - 1 of 1) sorted by relevance

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiScrollable.java415 public boolean scrollToBeginning(int maxSwipes, int steps) throws UiObjectNotFoundException { argument
418 for(int x = 0; x < maxSwipes; x++) {
429 * @param maxSwipes
432 public boolean scrollToBeginning(int maxSwipes) throws UiObjectNotFoundException { argument
433 return scrollToBeginning(maxSwipes, SCROLL_STEPS);
439 * @param maxSwipes
442 public boolean flingToBeginning(int maxSwipes) throws UiObjectNotFoundException { argument
443 return scrollToBeginning(maxSwipes, FLING_STEPS);
454 public boolean scrollToEnd(int maxSwipes, int steps) throws UiObjectNotFoundException { argument
456 for(int x = 0; x < maxSwipes;
470 scrollToEnd(int maxSwipes) argument
480 flingToEnd(int maxSwipes) argument
[all...]

Completed in 37 milliseconds