Searched defs:startCoordinates (Results 1 - 2 of 2) sorted by relevance
/frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/ |
H A D | Swiper.java | 43 * Swipes from {@code startCoordinates} to {@code endCoordinates} using the given 47 * @param startCoordinates a float[] with x and y co-ordinates of the start of the swipe. 52 public Status sendSwipe(UiController uiController, float[] startCoordinates, argument
|
H A D | Swipe.java | 36 public Swiper.Status sendSwipe(UiController uiController, float[] startCoordinates, 38 return sendLinearSwipe(uiController, startCoordinates, endCoordinates, precision, 46 public Swiper.Status sendSwipe(UiController uiController, float[] startCoordinates, 48 return sendLinearSwipe(uiController, startCoordinates, endCoordinates, precision, 78 private static Swiper.Status sendLinearSwipe(UiController uiController, float[] startCoordinates, argument 81 checkNotNull(startCoordinates); 85 float[][] steps = interpolate(startCoordinates, endCoordinates, SWIPE_EVENT_COUNT);
|
Completed in 27 milliseconds