Searched defs:endCoordinates (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
48 * @param endCoordinates a float[] with x and y co-ordinates of the end of the swipe.
53 float[] endCoordinates, float[] precision);
52 sendSwipe(UiController uiController, float[] startCoordinates, float[] endCoordinates, float[] precision) argument
H A DSwipe.java37 float[] endCoordinates, float[] precision) {
38 return sendLinearSwipe(uiController, startCoordinates, endCoordinates, precision,
47 float[] endCoordinates, float[] precision) {
48 return sendLinearSwipe(uiController, startCoordinates, endCoordinates, precision,
79 float[] endCoordinates, float[] precision, int duration) {
82 checkNotNull(endCoordinates);
85 float[][] steps = interpolate(startCoordinates, endCoordinates, SWIPE_EVENT_COUNT);
104 if (!MotionEvents.sendUp(uiController, downEvent, endCoordinates)) {
78 sendLinearSwipe(UiController uiController, float[] startCoordinates, float[] endCoordinates, float[] precision, int duration) argument

Completed in 38 milliseconds