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

  /frameworks/native/services/inputflinger/tests/
InputDispatcher_test.cpp 143 PointerProperties pointerProperties[MAX_POINTERS + 1];
144 PointerCoords pointerCoords[MAX_POINTERS + 1];
145 for (int i = 0; i <= MAX_POINTERS; i++) {
216 /*pointerCount*/ MAX_POINTERS + 1, pointerProperties, pointerCoords);
220 << "Should reject motion events with more than MAX_POINTERS pointers.";
  /frameworks/native/include/input/
VelocityTracker.h 178 VelocityTracker::Position positions[MAX_POINTERS];
256 VelocityTracker::Position positions[MAX_POINTERS];
InputTransport.h 104 } pointers[MAX_POINTERS];
113 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS
230 * Returns BAD_VALUE if seq is 0 or if pointerCount is less than 1 or greater than MAX_POINTERS.
371 PointerCoords pointers[MAX_POINTERS];
Input.h 125 #define MAX_POINTERS 16
  /frameworks/native/services/inputflinger/
InputListener.h 94 PointerProperties pointerProperties[MAX_POINTERS];
95 PointerCoords pointerCoords[MAX_POINTERS];
InputDispatcher.h 523 PointerProperties pointerProperties[MAX_POINTERS];
524 PointerCoords pointerCoords[MAX_POINTERS];
775 PointerProperties pointerProperties[MAX_POINTERS];
776 PointerCoords pointerCoords[MAX_POINTERS];
    [all...]
InputReader.h 801 Pointer pointers[MAX_POINTERS];
836 PointerProperties pointerProperties[MAX_POINTERS];
837 PointerCoords pointerCoords[MAX_POINTERS];
    [all...]
InputDispatcher.cpp 153 if (pointerCount < 1 || pointerCount > MAX_POINTERS) {
155 pointerCount, MAX_POINTERS);
    [all...]
InputReader.cpp     [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 64 Velocity mCalculatedVelocity[MAX_POINTERS];
  /frameworks/native/libs/input/
VelocityTracker.cpp 222 while (idBits.count() > MAX_POINTERS) {
299 if (pointerCount > MAX_POINTERS) {
300 pointerCount = MAX_POINTERS;
308 uint32_t pointerIndex[MAX_POINTERS];
    [all...]
InputTransport.cpp 79 && body.motion.pointerCount <= MAX_POINTERS;
320 if (pointerCount > MAX_POINTERS || pointerCount < 1) {
    [all...]
Input.cpp 427 if (pointerCount == 0 || pointerCount > MAX_POINTERS ||
  /frameworks/native/libs/input/tests/
InputPublisherAndConsumer_test.cpp 270 const size_t pointerCount = MAX_POINTERS + 1;

Completed in 936 milliseconds