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

  /frameworks/base/services/input/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++) {
210 /*pointerCount*/ MAX_POINTERS + 1, pointerProperties, pointerCoords);
213 << "Should reject motion events with more than MAX_POINTERS pointers.";
  /frameworks/base/include/androidfw/
VelocityTracker.h 178 VelocityTracker::Position positions[MAX_POINTERS];
256 VelocityTracker::Position positions[MAX_POINTERS];
InputTransport.h 93 } pointers[MAX_POINTERS];
102 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS
219 * Returns BAD_VALUE if seq is 0 or if pointerCount is less than 1 or greater than MAX_POINTERS.
358 PointerCoords pointers[MAX_POINTERS];
Input.h 86 #define MAX_POINTERS 16
  /frameworks/base/services/input/
InputListener.h 93 PointerProperties pointerProperties[MAX_POINTERS];
94 PointerCoords pointerCoords[MAX_POINTERS];
InputReader.h 750 Pointer pointers[MAX_POINTERS];
785 PointerProperties pointerProperties[MAX_POINTERS];
786 PointerCoords pointerCoords[MAX_POINTERS];
    [all...]
InputDispatcher.h 518 PointerProperties pointerProperties[MAX_POINTERS];
519 PointerCoords pointerCoords[MAX_POINTERS];
761 PointerProperties pointerProperties[MAX_POINTERS];
762 PointerCoords pointerCoords[MAX_POINTERS];
    [all...]
InputDispatcher.cpp 147 if (pointerCount < 1 || pointerCount > MAX_POINTERS) {
149 pointerCount, MAX_POINTERS);
    [all...]
InputReader.cpp     [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 63 Velocity mCalculatedVelocity[MAX_POINTERS];
  /frameworks/base/libs/androidfw/
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 74 && body.motion.pointerCount <= MAX_POINTERS;
313 if (pointerCount > MAX_POINTERS || pointerCount < 1) {
    [all...]
Input.cpp 481 if (pointerCount == 0 || pointerCount > MAX_POINTERS || sampleCount == 0) {
  /frameworks/base/libs/androidfw/tests/
InputPublisherAndConsumer_test.cpp 265 const size_t pointerCount = MAX_POINTERS + 1;

Completed in 357 milliseconds