Home
last modified time | relevance | path

Searched refs:MAX_POINTER_COUNT (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/core/java/android/accessibilityservice/
H A DTouchInteractionController.java99 private static final int MAX_POINTER_COUNT = 32; field in TouchInteractionController
292 if (pointerId < 0 || pointerId > MAX_POINTER_COUNT) { in requestDragging()
387 return MAX_POINTER_COUNT; in getMaxPointerCount()
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/
H A DTouchState.java42 public static final int MAX_POINTER_COUNT = 32; field in TouchState
410 private final PointerDownInfo[] mReceivedPointers = new PointerDownInfo[MAX_POINTER_COUNT];
430 for (int i = 0; i < MAX_POINTER_COUNT; ++i) { in clear()
574 for (int i = 0; i < MAX_POINTER_COUNT; i++) { in toString()
H A DEventDispatcher.java21 import static com.android.server.accessibility.gestures.TouchState.MAX_POINTER_COUNT;
176 for (int i = 0; i < MAX_POINTER_COUNT; i++) { in toString()
H A DTouchExplorer.java1363 if (pointerId < 0 || pointerId > TouchState.MAX_POINTER_COUNT in requestDragging()