Home
last modified time | relevance | path

Searched refs:previousEndValue (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DViewState.java439 Float previousEndValue = getChildTag(child, TAG_END_ALPHA); in startAlphaAnimation() local
441 if (previousEndValue != null && previousEndValue == newEndValue) { in startAlphaAnimation()
452 float relativeDiff = newEndValue - previousEndValue; in startAlphaAnimation()
526 Float previousEndValue = getChildTag(child, TAG_END_TRANSLATION_Z); in startZTranslationAnimation() local
528 if (previousEndValue != null && previousEndValue == newEndValue) { in startZTranslationAnimation()
539 float relativeDiff = newEndValue - previousEndValue; in startZTranslationAnimation()
587 Float previousEndValue = getChildTag(child, TAG_END_TRANSLATION_X); in startXTranslationAnimation() local
589 if (previousEndValue != null && previousEndValue == newEndValue) { in startXTranslationAnimation()
600 float relativeDiff = newEndValue - previousEndValue; in startXTranslationAnimation()
655 if (previousEndValue != null && previousEndValue == newEndValue) { in startYTranslationAnimation()
[all …]
H A DExpandableViewState.java243 Integer previousEndValue = getChildTag(child, TAG_END_HEIGHT); in startHeightAnimation() local
245 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation()
256 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation()
327 Integer previousEndValue = getChildTag(child, in startClipAnimation() local
330 if (previousEndValue != null && previousEndValue == newEndValue) { in startClipAnimation()
342 int relativeDiff = newEndValue - previousEndValue; in startClipAnimation()
H A DNotificationSection.java93 int previousEndValue = mEndAnimationRect.top; in startTopAnimation() local
96 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation()
142 int previousEndValue = mEndAnimationRect.bottom; in startBottomAnimation() local
145 if (previousAnimator != null && previousEndValue == newEndValue) { in startBottomAnimation()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimator.java64 Float previousEndValue = ViewState.getChildTag(view, animationEndTag); in startAnimation() local
65 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation()
77 float relativeDiff = newEndValue - previousEndValue; in startAnimation()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DScrimController.java856 float previousEndValue = (Float) scrim.getTag(TAG_END_ALPHA); in setOrAdaptCurrentAnimation() local
858 float relativeDiff = alpha - previousEndValue; in setOrAdaptCurrentAnimation()