Home
last modified time | relevance | path

Searched refs:touchTranslation (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/
H A DNavigationBarEdgePanel.java731 float touchTranslation = MathUtils.abs(x - mStartX); in handleMoveEvent() local
733 float delta = touchTranslation - mPreviousTouchTranslation; in handleMoveEvent()
741 mPreviousTouchTranslation = touchTranslation; in handleMoveEvent()
760 if (touchTranslation > mBaseTranslation) { in handleMoveEvent()
761 float diff = touchTranslation - mBaseTranslation; in handleMoveEvent()
765 touchTranslation = mBaseTranslation + progress; in handleMoveEvent()
767 float diff = mBaseTranslation - touchTranslation; in handleMoveEvent()
771 touchTranslation = mBaseTranslation - progress; in handleMoveEvent()
807 touchTranslation = 0; in handleMoveEvent()
812 touchTranslation -= getStaticArrowWidth(); in handleMoveEvent()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DUdfpsViewTest.kt102 whenever(animationViewController.touchTranslation).thenReturn(PointF(0f, 0f))
114 whenever(animationViewController.touchTranslation).thenReturn(offset)
130 whenever(animationViewController.touchTranslation).thenReturn(PointF(0f, 0f))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsAnimationViewController.kt77 open val touchTranslation: PointF = PointF(0f, 0f)
H A DUdfpsView.kt136 val translation = animationViewController?.touchTranslation ?: PointF(0f, 0f)