Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/
DNavigationBarEdgePanel.java731 float touchTranslation = MathUtils.abs(x - mStartX); in handleMoveEvent() local
733 float delta = touchTranslation - mPreviousTouchTranslation; in handleMoveEvent()
741 mPreviousTouchTranslation = touchTranslation; in handleMoveEvent()
744 if (!mDragSlopPassed && touchTranslation > mSwipeTriggerThreshold) { 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()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DUdfpsViewTest.kt99 whenever(animationViewController.touchTranslation).thenReturn(PointF(0f, 0f)) in isWithinSensorAreaAndPaused()
111 whenever(animationViewController.touchTranslation).thenReturn(offset) in isWithinSensorAreaWhenTranslated()
127 whenever(animationViewController.touchTranslation).thenReturn(PointF(0f, 0f)) in isNotWithinSensorArea()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsAnimationViewController.kt73 open val touchTranslation: PointF = PointF(0f, 0f) in <lambda>() constant
DUdfpsView.kt135 val translation = animationViewController?.touchTranslation ?: PointF(0f, 0f) in <lambda>()