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

  /frameworks/base/libs/ui/tests/
InputDispatcher_test.cpp 125 int32_t pointerIds[MAX_POINTERS + 1];
126 PointerCoords pointerCoords[MAX_POINTERS + 1];
127 for (int i = 0; i <= MAX_POINTERS; i++) {
190 /*pointerCount*/ MAX_POINTERS + 1, pointerIds, pointerCoords);
193 << "Should reject motion events with more than MAX_POINTERS pointers.";
InputPublisherAndConsumer_test.cpp 357 const size_t pointerCount = MAX_POINTERS + 1;
402 const size_t pointerCount = MAX_POINTERS;
419 const size_t pointerCount = MAX_POINTERS;
446 const size_t pointerCount = MAX_POINTERS;
  /frameworks/base/include/ui/
InputReader.h 559 PointerData pointers[MAX_POINTERS];
785 uint32_t historyStart[MAX_POINTERS];
786 uint32_t historyEnd[MAX_POINTERS];
792 } pointers[MAX_POINTERS];
912 } pointers[MAX_POINTERS + 1]; // + 1 to remove the need for extra range checks
InputTransport.h 146 int32_t pointerIds[MAX_POINTERS];
215 * Returns BAD_VALUE if pointerCount is less than 1 or greater than MAX_POINTERS.
InputDispatcher.h 513 PointerCoords pointerCoords[MAX_POINTERS];
527 int32_t pointerIds[MAX_POINTERS];
763 int32_t pointerIds[MAX_POINTERS];
764 PointerCoords pointerCoords[MAX_POINTERS];
    [all...]
Input.h 45 #define MAX_POINTERS 10
  /frameworks/base/core/jni/
android_view_MotionEvent.cpp 190 PointerCoords samplePointerCoords[MAX_POINTERS];
  /frameworks/base/libs/ui/
InputReader.cpp     [all...]
InputTransport.cpp 378 if (pointerCount > MAX_POINTERS || pointerCount < 1) {
InputDispatcher.cpp 122 if (pointerCount < 1 || pointerCount > MAX_POINTERS) {
124 pointerCount, MAX_POINTERS);
    [all...]

Completed in 346 milliseconds