Searched defs:toolType (Results 1 - 6 of 6) sorted by relevance
/frameworks/base/core/java/com/android/internal/widget/ |
H A D | PointerLocationView.java | 388 MotionEvent.PointerCoords coords, int id, int toolType, int buttonState) { 458 .append(" ToolType=").append(MotionEvent.toolTypeToString(toolType)) 387 logCoords(String type, int action, int index, MotionEvent.PointerCoords coords, int id, int toolType, int buttonState) argument
|
/frameworks/base/core/jni/ |
H A D | android_view_MotionEvent.cpp | 60 jfieldID toolType; member in struct:android::__anon50 322 outPointerProperties->toolType = env->GetIntField(pointerPropertiesObj, 323 gPointerPropertiesClassInfo.toolType); 330 env->SetIntField(outPointerPropertiesObj, gPointerPropertiesClassInfo.toolType, 331 pointerProperties->toolType); 895 GET_FIELD_ID(gPointerPropertiesClassInfo.toolType, clazz, 896 "toolType", "I");
|
/frameworks/base/include/ui/ |
H A D | Input.h | 244 int32_t toolType; member in struct:android::PointerProperties 248 toolType = 0; 396 return mPointerProperties[pointerIndex].toolType;
|
/frameworks/base/core/java/android/view/ |
H A D | MotionEvent.java | 2887 msg.append(", toolType[").append(i).append("]=").append( 3025 * @param toolType The tool type. 3029 public static String toolTypeToString(int toolType) { argument 3030 String symbolicName = TOOL_TYPE_SYMBOLIC_NAMES.get(toolType); 3031 return symbolicName != null ? symbolicName : Integer.toString(toolType); 3405 public int toolType; field in class:MotionEvent.PointerProperties 3412 toolType = TOOL_TYPE_UNKNOWN; 3422 toolType = other.toolType;
|
/frameworks/base/services/input/tests/ |
H A D | InputReader_test.cpp | 1984 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_MOUSE, args.pointerProperties[0].toolType); 2006 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_MOUSE, args.pointerProperties[0].toolType); 2802 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 2826 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 2849 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 2900 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 2923 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 2966 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 2991 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 3014 ASSERT_EQ(AMOTION_EVENT_TOOL_TYPE_FINGER, motionArgs.pointerProperties[0].toolType); 3723 processToolType( MultiTouchInputMapper* mapper, int32_t toolType) argument [all...] |
/frameworks/base/services/input/ |
H A D | InputReader.h | 652 int32_t toolType; // a fully decoded AMOTION_EVENT_TOOL_TYPE constant member in struct:android::RawPointerData::Pointer
|
Completed in 123 milliseconds