/frameworks/base/services/input/tests/ |
InputDispatcher_test.cpp | 143 PointerProperties pointerProperties[MAX_POINTERS + 1]; 146 pointerProperties[i].clear(); 147 pointerProperties[i].id = i; 155 /*pointerCount*/ 1, pointerProperties, pointerCoords); 165 /*pointerCount*/ 1, pointerProperties, pointerCoords); 174 /*pointerCount*/ 1, pointerProperties, pointerCoords); 184 /*pointerCount*/ 1, pointerProperties, pointerCoords); 193 /*pointerCount*/ 1, pointerProperties, pointerCoords); 202 /*pointerCount*/ 0, pointerProperties, pointerCoords) [all...] |
InputReader_test.cpp | [all...] |
/frameworks/base/libs/ui/tests/ |
InputPublisherAndConsumer_test.cpp | 166 PointerProperties pointerProperties[pointerCount]; 168 pointerProperties[i].clear(); 169 pointerProperties[i].id = (i + 2) % pointerCount; 170 pointerProperties[i].toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; 197 pointerProperties, samplePointerCoords.array()); 254 EXPECT_EQ(pointerProperties[i].id, motionEvent->getPointerId(i)); 255 EXPECT_EQ(pointerProperties[i].toolType, motionEvent->getToolType(i)); 364 PointerProperties pointerProperties[pointerCount] [all...] |
InputEvent_test.cpp | 223 PointerProperties pointerProperties[2]; 224 pointerProperties[0].clear(); 225 pointerProperties[0].id = 1; 226 pointerProperties[0].toolType = AMOTION_EVENT_TOOL_TYPE_FINGER; 227 pointerProperties[1].clear(); 228 pointerProperties[1].id = 2; 229 pointerProperties[1].toolType = AMOTION_EVENT_TOOL_TYPE_STYLUS; 257 2, pointerProperties, pointerCoords); 535 PointerProperties pointerProperties[pointerCount] [all...] |
/frameworks/base/services/input/ |
InputListener.cpp | 73 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords, 80 this->pointerProperties[i].copyFrom(pointerProperties[i]); 93 pointerProperties[i].copyFrom(other.pointerProperties[i]);
|
InputListener.h | 92 PointerProperties pointerProperties[MAX_POINTERS]; 103 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords,
|
InputDispatcher.cpp | 153 const PointerProperties* pointerProperties) { 165 int32_t id = pointerProperties[i].id; [all...] |
InputReader.cpp | [all...] |
InputDispatcher.h | 522 PointerProperties pointerProperties[MAX_POINTERS]; 533 const PointerProperties* pointerProperties, const PointerCoords* pointerCoords); 539 const PointerProperties* pointerProperties) const; 778 PointerProperties pointerProperties[MAX_POINTERS]; [all...] |
InputReader.h | 692 PointerProperties pointerProperties[MAX_POINTERS]; 702 return hoveringIdBits.hasBit(pointerProperties[pointerIndex].id); [all...] |
/frameworks/base/include/ui/ |
InputTransport.h | 147 PointerProperties pointerProperties[MAX_POINTERS]; 233 const PointerProperties* pointerProperties,
|
Input.h | 239 struct PointerProperties { 251 bool operator==(const PointerProperties& other) const; 252 inline bool operator!=(const PointerProperties& other) const { 256 void copyFrom(const PointerProperties& other); 387 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const { 537 const PointerProperties* pointerProperties, 563 inline const PointerProperties* getPointerProperties() const { 582 Vector<PointerProperties> mPointerProperties;
|
/frameworks/base/core/jni/ |
android_view_MotionEvent.cpp | 127 "pointerProperties array must not be null"); 133 "pointerProperties array must be large enough to hold all pointers"); 185 "pointerProperties must not be null"); 318 PointerProperties* outPointerProperties) { 326 static void pointerPropertiesFromNative(JNIEnv* env, const PointerProperties* pointerProperties, 329 pointerProperties->id); 331 pointerProperties->toolType); 356 PointerProperties pointerProperties[pointerCount] [all...] |
/frameworks/base/libs/ui/ |
InputTransport.cpp | 379 const PointerProperties* pointerProperties, 419 mSharedMessage->motion.pointerProperties[i].copyFrom(pointerProperties[i]); 711 mSharedMessage->motion.pointerProperties,
|
Input.cpp | 374 // --- PointerProperties --- 376 bool PointerProperties::operator==(const PointerProperties& other) const { 381 void PointerProperties::copyFrom(const PointerProperties& other) { 404 const PointerProperties* pointerProperties, 418 mPointerProperties.appendArray(pointerProperties, pointerCount); 610 PointerProperties& properties = mPointerProperties.editTop(); 649 const PointerProperties& properties = mPointerProperties.itemAt(i) [all...] |
/frameworks/base/core/java/android/view/ |
MotionEvent.java | [all...] |
/prebuilt/sdk/14/ |
android.jar | |