HomeSort by relevance Sort by last modified time
    Searched refs:MAX_POINTER_ID (Results 1 - 9 of 9) sorted by null

  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
MotionEventInjector.java 480 int MAX_POINTER_ID = 10;
484 if (pointerId >= MAX_POINTER_ID) {
485 return MAX_POINTER_ID;
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 117 if (id >= 0 && id <= MAX_POINTER_ID && mCalculatedIdBits.hasBit(id)) {
  /frameworks/native/include/input/
VelocityTracker.h 221 State mPointerState[MAX_POINTER_ID + 1];
InputTransport.h 369 int32_t idToIndex[MAX_POINTER_ID + 1];
Input.h 137 #define MAX_POINTER_ID 31
  /frameworks/native/services/inputflinger/tests/
InputDispatcher_test.cpp 233 pointerProperties[0].id = MAX_POINTER_ID + 1;
241 << "Should reject motion events with pointer ids greater than MAX_POINTER_ID.";
  /frameworks/native/services/inputflinger/
InputReader.h 802 uint32_t idToIndex[MAX_POINTER_ID + 1];
838 uint32_t idToIndex[MAX_POINTER_ID + 1];
    [all...]
InputDispatcher.cpp 200 if (id < 0 || id > MAX_POINTER_ID) {
202 id, MAX_POINTER_ID);
    [all...]
InputReader.cpp     [all...]

Completed in 303 milliseconds