/aosp14/frameworks/base/services/tests/servicestests/res/raw/ |
H A D | a11y_three_finger_swipe_down_gesture.log | 5 …]=696.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=764.0, y[1]=801.0, toolType[1]=TOOL_TYPE_FING… 6 …]=696.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=766.0, y[1]=811.0, toolType[1]=TOOL_TYPE_FING… 7 …]=699.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=773.0, y[1]=838.0, toolType[1]=TOOL_TYPE_FING… 8 …]=728.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=776.0, y[1]=862.0, toolType[1]=TOOL_TYPE_FING… 9 …]=765.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=782.0, y[1]=898.0, toolType[1]=TOOL_TYPE_FING… 10 …]=795.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=786.0, y[1]=918.0, toolType[1]=TOOL_TYPE_FING… 11 …]=832.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=790.0, y[1]=959.0, toolType[1]=TOOL_TYPE_FING… 12 …]=870.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=794.0, y[1]=988.0, toolType[1]=TOOL_TYPE_FING… 13 …=909.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=797.0, y[1]=1031.0, toolType[1]=TOOL_TYPE_FING… 14 …=948.0, toolType[0]=TOOL_TYPE_FINGER, id[1]=1, x[1]=801.0, y[1]=1060.0, toolType[1]=TOOL_TYPE_FING… [all …]
|
H A D | a11y_touch_explore_gesture.log | 2 MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=825.0, y[0]=2028.0, toolType[0]=TOO… 3 MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=825.0, y[0]=2028.0, toolType[0]=TOO… 4 MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=825.0, y[0]=2028.0, toolType[0]=TOOL_…
|
/aosp14/frameworks/base/core/java/android/hardware/input/ |
H A D | VirtualTouchEvent.java | 101 private VirtualTouchEvent(int pointerId, @ToolType int toolType, @Action int action, in VirtualTouchEvent() argument 104 mToolType = toolType; in VirtualTouchEvent() 259 public @NonNull Builder setToolType(@ToolType int toolType) { in setToolType() argument 260 if (toolType != TOOL_TYPE_FINGER && toolType != TOOL_TYPE_PALM) { in setToolType() 263 mToolType = toolType; in setToolType()
|
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/view/ |
H A D | HandwritingInitiatorPerfTest.java | 212 private MotionEvent createMotionEvent(int action, int toolType, int x, int y, long eventTime) { in createMotionEvent() argument 214 properties[0].toolType = toolType; in createMotionEvent()
|
/aosp14/frameworks/base/tests/FlickerTests/src/com/android/server/wm/flicker/helpers/ |
H A D | GestureHelper.java | 289 private PointerProperties getPointerProp(int id, int toolType) { in getPointerProp() argument 292 ptrProp.toolType = toolType; in getPointerProp()
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_view_MotionEvent.cpp | 67 jfieldID toolType; member 319 const int32_t toolType = env->GetIntField(pointerPropertiesObj, in pointerPropertiesToNative() local 320 gPointerPropertiesClassInfo.toolType); in pointerPropertiesToNative() 321 outPointerProperties->toolType = static_cast<ToolType>(toolType); in pointerPropertiesToNative() 328 env->SetIntField(outPointerPropertiesObj, gPointerPropertiesClassInfo.toolType, in pointerPropertiesFromNative() 329 static_cast<int32_t>(pointerProperties->toolType)); in pointerPropertiesFromNative() 912 gPointerPropertiesClassInfo.toolType = GetFieldIDOrDie(env, clazz, "toolType", "I"); in register_android_view_MotionEvent()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | ViewGroupTest.java | 68 properties[0].toolType = MotionEvent.TOOL_TYPE_FINGER; in testDispatchMouseEventsUnderCursor() 71 properties[1].toolType = MotionEvent.TOOL_TYPE_FINGER; in testDispatchMouseEventsUnderCursor()
|
H A D | PinchZoomAction.java | 62 pp1.toolType = MotionEvent.TOOL_TYPE_FINGER; in sendPinchZoomAction() 65 pp2.toolType = MotionEvent.TOOL_TYPE_FINGER; in sendPinchZoomAction()
|
H A D | MotionEventTest.java | 62 p.toolType = TOOL_TYPE_FINGER; in testObtainWithDisplayId() 134 properties[i].toolType = MotionEvent.TOOL_TYPE_FINGER; in testCalculatesCursorPositionForMultiTouchMouseEvents()
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | MotionEvent.java | 4077 public static String toolTypeToString(@ToolType int toolType) { in toolTypeToString() argument 4078 String symbolicName = TOOL_TYPE_SYMBOLIC_NAMES.get(toolType); in toolTypeToString() 4079 return symbolicName != null ? symbolicName : Integer.toString(toolType); in toolTypeToString() 4613 public @ToolType int toolType; field in MotionEvent.PointerProperties 4620 toolType = TOOL_TYPE_UNKNOWN; in clear() 4630 toolType = other.toolType; in copyFrom() 4642 return other != null && id == other.id && toolType == other.toolType; in equals() 4647 return id | (toolType << 8); in hashCode()
|
H A D | HandwritingInitiator.java | 150 final int toolType = motionEvent.getToolType(actionIndex); in onTouchEvent() local 153 if (toolType != MotionEvent.TOOL_TYPE_STYLUS in onTouchEvent() 154 && toolType != MotionEvent.TOOL_TYPE_ERASER) { in onTouchEvent()
|
/aosp14/frameworks/base/services/core/java/com/android/server/inputmethod/ |
H A D | IInputMethodInvoker.java | 227 void updateEditorToolType(@MotionEvent.ToolType int toolType) { in updateEditorToolType() argument 229 mTarget.updateEditorToolType(toolType); in updateEditorToolType()
|
H A D | ImeVisibilityStateComputer.java | 668 boolean isStartInputByGainFocus, @MotionEvent.ToolType int toolType) { in ImeTargetWindowState() argument 674 mToolType = toolType; in ImeTargetWindowState()
|
/aosp14/frameworks/base/core/java/com/android/internal/inputmethod/ |
H A D | IInputMethod.aidl | 78 void updateEditorToolType(int toolType); in updateEditorToolType() argument
|
/aosp14/frameworks/base/core/java/android/view/inputmethod/ |
H A D | InputMethod.java | 398 default void updateEditorToolType(int toolType) { in updateEditorToolType() argument
|
/aosp14/frameworks/base/tests/Input/src/com/android/test/input/ |
H A D | MotionPredictorTest.kt | 58 properties[i]!!.toolType = MotionEvent.TOOL_TYPE_STYLUS
|
/aosp14/frameworks/base/services/core/jni/ |
H A D | com_android_server_companion_virtual_InputController.cpp | 252 jint toolType, jint action, jfloat locationX, jfloat locationY, in nativeWriteTouchEvent() argument 255 return virtualTouchscreen->writeTouchEvent(pointerId, toolType, action, locationX, locationY, in nativeWriteTouchEvent()
|
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/input/ |
H A D | MotionPredictorBenchmark.kt | 59 properties[i]!!.toolType = MotionEvent.TOOL_TYPE_STYLUS
|
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/split/ |
H A D | DividerViewTest.java | 101 properties.toolType = MotionEvent.TOOL_TYPE_UNKNOWN; in getMotionEvent()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/utils/ |
H A D | GestureLogParser.java | 131 pointerProps.toolType = MotionEvent.TOOL_TYPE_FINGER; in findProperties()
|
H A D | TouchEventGenerator.java | 95 pointerProperties.toolType = MotionEvent.TOOL_TYPE_FINGER; in generateMultiplePointersEvent()
|
/aosp14/frameworks/base/services/companion/java/com/android/server/companion/virtual/ |
H A D | InputController.java | 524 private static native boolean nativeWriteTouchEvent(long ptr, int pointerId, int toolType, in nativeWriteTouchEvent() argument 573 public boolean writeTouchEvent(long ptr, int pointerId, int toolType, int action, in writeTouchEvent() argument 576 return nativeWriteTouchEvent(ptr, pointerId, toolType, in writeTouchEvent()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/ |
H A D | ClassifierTest.java | 173 properties.toolType = Configurator.getInstance().getToolType(); in getPointerProperties()
|
/aosp14/frameworks/base/core/java/android/inputmethodservice/ |
H A D | IInputMethodWrapper.java | 468 public void updateEditorToolType(int toolType) in updateEditorToolType() argument 471 mCaller.obtainMessageI(DO_UPDATE_TOOL_TYPE, toolType)); in updateEditorToolType()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/ |
H A D | PointerIconTest.java | 291 properties[0].toolType = in createHoverEvent()
|