Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/
H A DMediaCarouselScrollHandler.kt301 val currentTranslation = scrollView.getContentTranslation() regex
302 if (currentTranslation != 0.0f) {
349 val currentTranslation = scrollView.getContentTranslation() regex
351 var newTranslation = currentTranslation - distanceX
355 if (Math.signum(distanceX) != Math.signum(currentTranslation)) {
358 if (Math.abs(currentTranslation) > getMaxTranslation()) {
373 Math.signum(newTranslation) != Math.signum(currentTranslation) &&
374 currentTranslation != 0.0f
410 val currentTranslation = scrollView.getContentTranslation() regex
411 if (currentTranslation != 0.0f) {
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityViewTransition.kt123 var currentTranslation = regex
127 var translationRemaining = totalTranslation - currentTranslation
130 currentTranslation = -currentTranslation
152 startRect.left + currentTranslation,
154 startRect.right + currentTranslation,
H A DPinShapeNonHintingView.java191 int currentTranslation = (int) ((diff) * value); in createAnimator()
193 startRect.left - currentTranslation, in createAnimator()
195 startRect.right - currentTranslation, in createAnimator()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DMessagingLayoutTransformState.java101 float currentTranslation = 0; in transformViewInternal() local
112 currentTranslation = matchingGroup.getAvatar().getTranslationY() in transformViewInternal()
115 currentTranslation = ownGroup.getAvatar().getTranslationY(); in transformViewInternal()
121 adaptGroupAppear(ownGroup, transformationAmount, currentTranslation, in transformViewInternal()
123 float newPosition = ownGroup.getTop() + currentTranslation; in transformViewInternal()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/
H A DNavigationBarEdgePanel.java876 private void setCurrentTranslation(float currentTranslation) { in setCurrentTranslation() argument
877 mCurrentTranslation = currentTranslation; in setCurrentTranslation()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DQuickSettingsController.java1248 float currentTranslation = mQsFrame.getTranslationY(); in applyClippingImmediately() local
1250 ? (int) (top - currentTranslation - mQsFrame.getTop()) : 0; in applyClippingImmediately()
1252 ? (int) (bottom - currentTranslation - mQsFrame.getTop()) : 0; in applyClippingImmediately()