Searched refs:properties (Results 1 – 2 of 2) sorted by relevance
| /test/uiautomator/uiautomator/src/main/java/androidx/test/uiautomator/ |
| D | GestureController.java | 156 List<PointerProperties> properties = new ArrayList<>(); in performGesture() local 201 int index = properties.indexOf(pointer.prop); in performGesture() 206 event = getMotionEvent(startTime, SystemClock.uptimeMillis(), action, properties, in performGesture() 210 properties.remove(index); in performGesture() 221 MotionEvent.ACTION_MOVE, properties, coordinates, in performGesture() 232 properties.add(pointer.prop); in performGesture() 241 + ((properties.size() - 1) << MotionEvent.ACTION_POINTER_INDEX_SHIFT); in performGesture() 243 event = getMotionEvent(startTime, SystemClock.uptimeMillis(), action, properties, in performGesture() 279 List<PointerProperties> properties, List<PointerCoords> coordinates, int displayId) { in getMotionEvent() argument 281 PointerProperties[] props = properties.toArray(new PointerProperties[0]); in getMotionEvent()
|
| D | InteractionController.java | 538 PointerProperties[] properties = new PointerProperties[touches.length]; in performMultiPointerGesture() local 544 properties[x] = prop; in performMultiPointerGesture() 554 properties, pointerCoords, 0, 0, 1, 1, 0, 0, InputDevice.SOURCE_TOUCHSCREEN, 0); in performMultiPointerGesture() 559 getPointerAction(MotionEvent.ACTION_POINTER_DOWN, x), x + 1, properties, in performMultiPointerGesture() 577 MotionEvent.ACTION_MOVE, touches.length, properties, pointerCoords, 0, 0, 1, 1, in performMultiPointerGesture() 591 getPointerAction(MotionEvent.ACTION_POINTER_UP, x), x + 1, properties, in performMultiPointerGesture() 598 properties, pointerCoords, 0, 0, 1, 1, 0, 0, InputDevice.SOURCE_TOUCHSCREEN, 0); in performMultiPointerGesture() 607 PointerProperties properties = new PointerProperties(); in getMotionEvent() local 608 properties.id = 0; in getMotionEvent() 609 properties.toolType = Configurator.getInstance().getToolType(); in getMotionEvent() [all …]
|