Searched refs:ProcessedTouch (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/ |
H A D | SinglePointerTouchProcessor.kt | 26 import com.android.systemui.biometrics.udfps.TouchProcessorResult.ProcessedTouch 99 ProcessedTouch(InteractionEvent.DOWN, data.pointerId, data) 104 ProcessedTouch(InteractionEvent.UP, INVALID_POINTER_ID, data) 109 ProcessedTouch(InteractionEvent.UNCHANGED, pointerOnSensorId, data) 117 ProcessedTouch(InteractionEvent.UP, pointerOnSensorId = INVALID_POINTER_ID, data) 124 ProcessedTouch(InteractionEvent.UNCHANGED, pointerOnSensorId, data) 129 return ProcessedTouch(InteractionEvent.CANCEL, pointerOnSensorId = INVALID_POINTER_ID, data)
|
H A D | TouchProcessorResult.kt | 34 data class ProcessedTouch( dataClass
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
H A D | UdfpsControllerTest.java | 1321 final TouchProcessorResult processorResultDown = new TouchProcessorResult.ProcessedTouch( in givenAcceptFingerDownEvent() 1323 final TouchProcessorResult processorResultUp = new TouchProcessorResult.ProcessedTouch( in givenAcceptFingerDownEvent() 1351 final TouchProcessorResult processorResultDown = new TouchProcessorResult.ProcessedTouch( in onTouch_WithNewTouchDetection_forwardToKeyguard() 1390 new TouchProcessorResult.ProcessedTouch(InteractionEvent.DOWN, in onTouch_withNewTouchDetection_ignoreIfAuthPaused() 1434 new TouchProcessorResult.ProcessedTouch(InteractionEvent.DOWN, in onTouch_withNewTouchDetection_ignoreAuthPauseIfFingerDown() 1437 new TouchProcessorResult.ProcessedTouch(InteractionEvent.UP, in onTouch_withNewTouchDetection_ignoreAuthPauseIfFingerDown() 1523 new TouchProcessorResult.ProcessedTouch( in onTouch_withNewTouchDetection_pilferPointer() 1541 new TouchProcessorResult.ProcessedTouch(InteractionEvent.UNCHANGED, in onTouch_withNewTouchDetection_doNotPilferPointer() 1580 new TouchProcessorResult.ProcessedTouch(InteractionEvent.UNCHANGED, in onTouch_withNewTouchDetection_pilferPointerWhenAltBouncerShowing() 1620 new TouchProcessorResult.ProcessedTouch(InteractionEvent.DOWN, in onTouch_withNewTouchDetection_qsDrag_processesTouchWhenAlternateBouncerVisible() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/ |
H A D | SinglePointerTouchProcessorTest.kt | 53 if (actual is TouchProcessorResult.ProcessedTouch) { 67 if (expected is TouchProcessorResult.ProcessedTouch) { 626 TouchProcessorResult.ProcessedTouch(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | UdfpsController.java | 580 final TouchProcessorResult.ProcessedTouch processedTouch = in newOnTouch() 581 (TouchProcessorResult.ProcessedTouch) result; in newOnTouch()
|