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

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DInteractionController.java356 swipe(downX, downY, upX, upY, steps);
360 // Collect all accessibility events generated during the swipe command and get the
422 * @return true if the swipe executed successfully
424 public boolean swipe(int downX, int downY, int upX, int upY, int steps) { method in class:InteractionController
425 return swipe(downX, downY, upX, upY, steps, false /*drag*/);
435 * @param drag when true, the swipe becomes a drag swipe
436 * @return true if the swipe executed successfully
438 public boolean swipe(int downX, int downY, int upX, int upY, int steps, boolean drag) { method in class:InteractionController
472 * Performs a swipe betwee
477 public boolean swipe(Point[] segments, int segmentSteps) { method in class:InteractionController
[all...]
H A DUiDevice.java415 * Performs a swipe from one coordinate to another using the number of steps
417 * per step. So for a 100 steps, the swipe will take about 1/2 second to complete.
427 public boolean swipe(int startX, int startY, int endX, int endY, int steps) { method in class:UiDevice
430 .swipe(startX, startY, endX, endY, steps);
434 * Performs a swipe from one coordinate to another coordinate. You can control
435 * the smoothness and speed of the swipe by specifying the number of steps.
437 * steps, the swipe will take around 0.5 seconds to complete.
443 * @param steps is the number of steps for the swipe action
444 * @return true if swipe is performed, false if the operation fails
451 .swipe(start
463 public boolean swipe(Point[] segments, int segmentSteps) { method in class:UiDevice
[all...]

Completed in 58 milliseconds