Searched refs:nativeSensorBounds (Results 1 – 6 of 6) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/ |
H A D | BoundingBoxOverlapDetector.kt | 32 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 D | EllipseOverlapDetector.kt | 44 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 D | OverlapDetector.kt | 25 nativeSensorBounds: Rect,
|
H A D | SinglePointerTouchProcessor.kt | 52 overlayParams.nativeSensorBounds,
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/biometrics/udfps/ |
H A D | FakeOverlapDetector.kt | 26 nativeSensorBounds: Rect,
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/udfps/ |
H A D | UdfpsOverlayParams.kt | 37 val nativeSensorBounds = Rect(sensorBounds).apply { scale(1f / scaleFactor) } regex
|