Searched refs:NormalizedTouchData (Results 1 – 13 of 13) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/ |
H A D | SinglePointerTouchProcessor.kt | 70 MotionEvent.ACTION_CANCEL -> processActionCancel(NormalizedTouchData()) 87 val data: List<NormalizedTouchData>, 98 val data = touch.data.find { it.pointerId == pointerOnSensorId } ?: NormalizedTouchData() 103 ?: NormalizedTouchData() 108 ?: touch.data.firstOrNull() ?: NormalizedTouchData() 116 val data = touch.data.find { it.pointerId == actionId } ?: NormalizedTouchData() 123 ?: touch.data.firstOrNull() ?: NormalizedTouchData() 128 private fun processActionCancel(data: NormalizedTouchData): TouchProcessorResult { 139 ): NormalizedTouchData { 149 return NormalizedTouchData(
|
H A D | EllipseOverlapDetector.kt | 43 touchData: NormalizedTouchData, 115 private fun checkPoint(point: Point, touchData: NormalizedTouchData): Boolean {
|
H A D | OverlapDetector.kt | 24 touchData: NormalizedTouchData,
|
H A D | TouchProcessorResult.kt | 37 val touchData: NormalizedTouchData
|
H A D | BoundingBoxOverlapDetector.kt | 31 touchData: NormalizedTouchData,
|
H A D | NormalizedTouchData.kt | 23 data class NormalizedTouchData( dataClass
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
H A D | UdfpsControllerTest.java | 87 import com.android.systemui.biometrics.udfps.NormalizedTouchData; 1319 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in givenAcceptFingerDownEvent() 1349 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in onTouch_WithNewTouchDetection_forwardToKeyguard() 1387 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in onTouch_withNewTouchDetection_ignoreIfAuthPaused() 1431 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in onTouch_withNewTouchDetection_ignoreAuthPauseIfFingerDown() 1491 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in onTouch_withNewTouchDetection_pilferPointer() 1538 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in onTouch_withNewTouchDetection_doNotPilferPointer() 1577 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in onTouch_withNewTouchDetection_pilferPointerWhenAltBouncerShowing() 1617 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in onTouch_withNewTouchDetection_qsDrag_processesTouchWhenAlternateBouncerVisible() 1730 final NormalizedTouchData touchData = new NormalizedTouchData(0, 0f, 0f, 0f, 0f, 0f, 0L, in aodInterrupt_withNewTouchDetection()
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/biometrics/udfps/ |
H A D | FakeOverlapDetector.kt | 25 touchData: NormalizedTouchData,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/ |
H A D | NormalizedTouchDataTest.kt | 56 NormalizedTouchData(
|
H A D | BoundingBoxOverlapDetectorTest.kt | 75 NormalizedTouchData(
|
H A D | EllipseOverlapDetectorTest.kt | 97 NormalizedTouchData(
|
H A D | SinglePointerTouchProcessorTest.kt | 518 NormalizedTouchData( 622 NormalizedTouchData()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | UdfpsController.java | 76 import com.android.systemui.biometrics.udfps.NormalizedTouchData; 518 private void logBiometricTouch(InteractionEvent event, NormalizedTouchData data) { in logBiometricTouch() 582 final NormalizedTouchData data = processedTouch.getTouchData(); in newOnTouch()
|