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

/frameworks/native/services/vr/virtual_touchpad/
H A DVirtualTouchpadEvdev.h53 int touches; member in struct:android::dvr::VirtualTouchpadEvdev::Touchpad
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DInteractionController.java677 * @param touches each array of {@link PointerCoords} constitute a single pointer's touch path.
684 public boolean performMultiPointerGesture(PointerCoords[] ... touches) { argument
686 if (touches.length < 2) {
692 for (int x = 0; x < touches.length; x++)
693 maxSteps = (maxSteps < touches[x].length) ? touches[x].length : maxSteps;
696 PointerProperties[] properties = new PointerProperties[touches.length];
697 PointerCoords[] pointerCoords = new PointerCoords[touches.length];
698 for (int x = 0; x < touches.length; x++) {
705 pointerCoords[x] = touches[
[all...]
H A DUiObject.java1080 * @param touches represents the pointers' paths. Each {@link PointerCoords}
1087 public boolean performMultiPointerGesture(PointerCoords[] ...touches) { argument
1088 return getInteractionController().performMultiPointerGesture(touches);

Completed in 203 milliseconds