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

/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DInteractionController.java679 * @param touches each array of {@link PointerCoords} constitute a single pointer's touch path.
686 public boolean performMultiPointerGesture(PointerCoords[] ... touches) { argument
688 if (touches.length < 2) {
694 for (int x = 0; x < touches.length; x++)
695 maxSteps = (maxSteps < touches[x].length) ? touches[x].length : maxSteps;
698 PointerProperties[] properties = new PointerProperties[touches.length];
699 PointerCoords[] pointerCoords = new PointerCoords[touches.length];
700 for (int x = 0; x < touches.length; x++) {
707 pointerCoords[x] = touches[
[all...]
H A DUiObject.java1073 * @param touches represents the pointers' paths. Each {@link PointerCoords}
1080 public boolean performMultiPointerGesture(PointerCoords[] ...touches) { argument
1081 return getInteractionController().performMultiPointerGesture(touches);
/frameworks/uiautomator/src/com/android/uiautomator/core/
H A DInteractionController.java679 * @param touches each array of {@link PointerCoords} constitute a single pointer's touch path.
686 public boolean performMultiPointerGesture(PointerCoords[] ... touches) { argument
688 if (touches.length < 2) {
694 for (int x = 0; x < touches.length; x++)
695 maxSteps = (maxSteps < touches[x].length) ? touches[x].length : maxSteps;
698 PointerProperties[] properties = new PointerProperties[touches.length];
699 PointerCoords[] pointerCoords = new PointerCoords[touches.length];
700 for (int x = 0; x < touches.length; x++) {
707 pointerCoords[x] = touches[
[all...]
H A DUiObject.java1073 * @param touches represents the pointers' paths. Each {@link PointerCoords}
1080 public boolean performMultiPointerGesture(PointerCoords[] ...touches) { argument
1081 return getInteractionController().performMultiPointerGesture(touches);

Completed in 680 milliseconds