OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_POINTERS
(Results
1 - 14
of
14
) sorted by null
/frameworks/base/services/input/tests/
InputDispatcher_test.cpp
144
PointerProperties pointerProperties[
MAX_POINTERS
+ 1];
145
PointerCoords pointerCoords[
MAX_POINTERS
+ 1];
146
for (int i = 0; i <=
MAX_POINTERS
; i++) {
211
/*pointerCount*/
MAX_POINTERS
+ 1, pointerProperties, pointerCoords);
214
<< "Should reject motion events with more than
MAX_POINTERS
pointers.";
/frameworks/base/services/input/
InputListener.h
93
PointerProperties pointerProperties[
MAX_POINTERS
];
94
PointerCoords pointerCoords[
MAX_POINTERS
];
InputReader.h
752
Pointer pointers[
MAX_POINTERS
];
787
PointerProperties pointerProperties[
MAX_POINTERS
];
788
PointerCoords pointerCoords[
MAX_POINTERS
];
[
all
...]
InputDispatcher.h
519
PointerProperties pointerProperties[
MAX_POINTERS
];
520
PointerCoords pointerCoords[
MAX_POINTERS
];
763
PointerProperties pointerProperties[
MAX_POINTERS
];
764
PointerCoords pointerCoords[
MAX_POINTERS
];
[
all
...]
InputDispatcher.cpp
149
if (pointerCount < 1 || pointerCount >
MAX_POINTERS
) {
151
pointerCount,
MAX_POINTERS
);
[
all
...]
InputReader.cpp
[
all
...]
/frameworks/native/include/input/
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
82
#define
MAX_POINTERS
16
/frameworks/base/core/jni/
android_view_VelocityTracker.cpp
63
Velocity mCalculatedVelocity[
MAX_POINTERS
];
/frameworks/native/libs/input/
VelocityTracker.cpp
221
while (idBits.count() >
MAX_POINTERS
) {
298
if (pointerCount >
MAX_POINTERS
) {
299
pointerCount =
MAX_POINTERS
;
307
uint32_t pointerIndex[
MAX_POINTERS
];
[
all
...]
InputTransport.cpp
75
&& body.motion.pointerCount <=
MAX_POINTERS
;
314
if (pointerCount >
MAX_POINTERS
|| pointerCount < 1) {
[
all
...]
Input.cpp
493
if (pointerCount == 0 || pointerCount >
MAX_POINTERS
|| sampleCount == 0) {
/frameworks/native/libs/input/tests/
InputPublisherAndConsumer_test.cpp
266
const size_t pointerCount =
MAX_POINTERS
+ 1;
Completed in 231 milliseconds