Home
last modified time | relevance | path

Searched refs:nativeSensorBounds (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/
H A DBoundingBoxOverlapDetector.kt32 nativeSensorBounds: Rect,
35 val scaledRadius = (nativeSensorBounds.width() / 2) * targetSize
38 (nativeSensorBounds.centerX() - scaledRadius).toInt(),
39 (nativeSensorBounds.centerY() - scaledRadius).toInt(),
40 (nativeSensorBounds.centerX() + scaledRadius).toInt(),
41 (nativeSensorBounds.centerY() + scaledRadius).toInt(),
H A DEllipseOverlapDetector.kt44 nativeSensorBounds: Rect,
48 if (touchData.isWithinBounds(nativeSensorBounds)) {
60 for (y in nativeSensorBounds.top..nativeSensorBounds.bottom step params.stepSize) {
61 for (x in nativeSensorBounds.left..nativeSensorBounds.right step params.stepSize) {
68 nativeSensorBounds.centerX(),
69 nativeSensorBounds.centerY(),
70 nativeSensorBounds.width() / 2
H A DOverlapDetector.kt25 nativeSensorBounds: Rect,
H A DSinglePointerTouchProcessor.kt52 overlayParams.nativeSensorBounds,
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/biometrics/udfps/
H A DFakeOverlapDetector.kt26 nativeSensorBounds: Rect,
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/udfps/
H A DUdfpsOverlayParams.kt37 val nativeSensorBounds = Rect(sensorBounds).apply { scale(1f / scaleFactor) } regex