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 DSwiper.java43 * 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 DSwipe.java36 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 54 milliseconds