Home
last modified time | relevance | path

Searched refs:NormalizedTouchData (Results 1 – 13 of 13) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/
H A DSinglePointerTouchProcessor.kt70 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 DEllipseOverlapDetector.kt43 touchData: NormalizedTouchData,
115 private fun checkPoint(point: Point, touchData: NormalizedTouchData): Boolean {
H A DOverlapDetector.kt24 touchData: NormalizedTouchData,
H A DTouchProcessorResult.kt37 val touchData: NormalizedTouchData
H A DBoundingBoxOverlapDetector.kt31 touchData: NormalizedTouchData,
H A DNormalizedTouchData.kt23 data class NormalizedTouchData( dataClass
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DUdfpsControllerTest.java87 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 DFakeOverlapDetector.kt25 touchData: NormalizedTouchData,
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/udfps/
H A DNormalizedTouchDataTest.kt56 NormalizedTouchData(
H A DBoundingBoxOverlapDetectorTest.kt75 NormalizedTouchData(
H A DEllipseOverlapDetectorTest.kt97 NormalizedTouchData(
H A DSinglePointerTouchProcessorTest.kt518 NormalizedTouchData(
622 NormalizedTouchData()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsController.java76 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()