/frameworks/support/compat/src/main/java/androidx/core/view/ |
H A D | InputDeviceCompat.java | 49 * Examples: {@link #SOURCE_TOUCHSCREEN}, {@link #SOURCE_MOUSE}. 133 public static final int SOURCE_TOUCHSCREEN = 0x00001000 | SOURCE_CLASS_POINTER; field in class:InputDeviceCompat 173 * associated with a display (unlike {@link #SOURCE_TOUCHSCREEN}).
|
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | InteractionController.java | 309 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 320 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 332 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 712 properties, pointerCoords, 0, 0, 1, 1, 0, 0, InputDevice.SOURCE_TOUCHSCREEN, 0); 718 pointerCoords, 0, 0, 1, 1, 0, 0, InputDevice.SOURCE_TOUCHSCREEN, 0); 735 0, 0, InputDevice.SOURCE_TOUCHSCREEN, 0); 749 pointerCoords, 0, 0, 1, 1, 0, 0, InputDevice.SOURCE_TOUCHSCREEN, 0); 756 properties, pointerCoords, 0, 0, 1, 1, 0, 0, InputDevice.SOURCE_TOUCHSCREEN, 0);
|
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/testutils/ |
H A D | TestUtils.java | 319 eventDown.setSource(InputDevice.SOURCE_TOUCHSCREEN); 329 eventMove.setSource(InputDevice.SOURCE_TOUCHSCREEN); 340 eventUp.setSource(InputDevice.SOURCE_TOUCHSCREEN);
|
/frameworks/base/cmds/input/src/com/android/commands/input/ |
H A D | Input.java | 44 put("touchscreen", InputDevice.SOURCE_TOUCHSCREEN); 104 inputSource = getSource(inputSource, InputDevice.SOURCE_TOUCHSCREEN); 111 inputSource = getSource(inputSource, InputDevice.SOURCE_TOUCHSCREEN); 124 inputSource = getSource(inputSource, InputDevice.SOURCE_TOUCHSCREEN);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
H A D | MagnificationGestureHandlerTest.java | 533 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 543 ev.setSource(InputDevice.SOURCE_TOUCHSCREEN); 596 /* source */ InputDevice.SOURCE_TOUCHSCREEN,
|
H A D | MotionEventInjectorTest.java | 97 private static final int MOTION_EVENT_SOURCE = InputDevice.SOURCE_TOUCHSCREEN; 157 mClickDownEvent.setSource(InputDevice.SOURCE_TOUCHSCREEN); 160 mClickUpEvent.setSource(InputDevice.SOURCE_TOUCHSCREEN); 902 && (InputDevice.SOURCE_TOUCHSCREEN == event.getSource());
|
/frameworks/base/core/java/android/view/ |
H A D | InputDevice.java | 94 * Examples: {@link #SOURCE_TOUCHSCREEN}, {@link #SOURCE_MOUSE}. 174 public static final int SOURCE_TOUCHSCREEN = 0x00001000 | SOURCE_CLASS_POINTER; field in class:InputDevice 251 * associated with a display (unlike {@link #SOURCE_TOUCHSCREEN}). 1013 appendSourceDescriptionIfApplicable(description, SOURCE_TOUCHSCREEN, "touchscreen");
|
H A D | ViewGroup.java | 2234 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 2256 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 2359 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 2844 event.setSource(InputDevice.SOURCE_TOUCHSCREEN); 2926 event.setSource(InputDevice.SOURCE_TOUCHSCREEN);
|
H A D | ViewRootImpl.java | 4836 ensureTouchMode(event.isFromSource(InputDevice.SOURCE_TOUCHSCREEN));
|
H A D | View.java | 13811 if (event.getSource() == InputDevice.SOURCE_TOUCHSCREEN) { [all...] |
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
H A D | MagnificationGestureHandler.java | 19 import static android.view.InputDevice.SOURCE_TOUCHSCREEN; 214 || !event.isFromSource(SOURCE_TOUCHSCREEN)) { 233 if (inputSource == SOURCE_TOUCHSCREEN) { 279 && event.isFromSource(SOURCE_TOUCHSCREEN)
|
H A D | AccessibilityInputFilter.java | 244 if (event.isFromSource(InputDevice.SOURCE_TOUCHSCREEN)) {
|
H A D | MotionEventInjector.java | 60 private static final int EVENT_SOURCE = InputDevice.SOURCE_TOUCHSCREEN;
|
H A D | TouchExplorer.java | 196 if (inputSource == InputDevice.SOURCE_TOUCHSCREEN) { 258 if (!event.isFromSource(InputDevice.SOURCE_TOUCHSCREEN)) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
H A D | FalsingManager.java | 462 mIsTouchScreen = event.isFromSource(InputDevice.SOURCE_TOUCHSCREEN);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarWindowView.java | 389 event.setSource(InputDevice.SOURCE_TOUCHSCREEN);
|
/frameworks/base/core/java/android/app/ |
H A D | Instrumentation.java | 1079 event.setSource(InputDevice.SOURCE_TOUCHSCREEN);
|
/frameworks/base/core/java/android/widget/ |
H A D | Editor.java | 4990 ev.isFromSource(InputDevice.SOURCE_TOUCHSCREEN)); 4995 filterOnTouchUp(ev.isFromSource(InputDevice.SOURCE_TOUCHSCREEN)); 5979 event.isFromSource(InputDevice.SOURCE_TOUCHSCREEN)); 6038 event.isFromSource(InputDevice.SOURCE_TOUCHSCREEN)); 6050 event.isFromSource(InputDevice.SOURCE_TOUCHSCREEN));
|
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | DisplayContent.java | 1339 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) == 1340 InputDevice.SOURCE_TOUCHSCREEN) {
|