Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DViewState.java353 if (previousAnimator != null) { in startAlphaAnimation()
362 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAlphaAnimation()
440 if (previousAnimator != null) { in startZTranslationAnimation()
449 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startZTranslationAnimation()
501 if (previousAnimator != null) { in startXTranslationAnimation()
510 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startXTranslationAnimation()
576 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startYTranslationAnimation()
640 if (previousAnimator != null) { in abortAnimation()
641 previousAnimator.cancel(); in abortAnimation()
655 if (previousAnimator != null) { in cancelAnimatorAndGetNewDuration()
[all …]
H A DNotificationSection.java97 ObjectAnimator previousAnimator = mTopAnimator; in startTopAnimation() local
98 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation()
103 if (previousAnimator != null) { in startTopAnimation()
111 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startTopAnimation()
119 if (previousAnimator != null) { in startTopAnimation()
120 previousAnimator.cancel(); in startTopAnimation()
147 ObjectAnimator previousAnimator = mBottomAnimator; in startBottomAnimation() local
153 if (previousAnimator != null) { in startBottomAnimation()
160 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startBottomAnimation()
168 if (previousAnimator != null) { in startBottomAnimation()
[all …]
H A DExpandableViewState.java229 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_HEIGHT); in startHeightAnimation() local
233 if (previousAnimator != null) { in startHeightAnimation()
236 PropertyValuesHolder[] values = previousAnimator.getValues(); in startHeightAnimation()
242 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startHeightAnimation()
262 if (properties.delay > 0 && (previousAnimator == null in startHeightAnimation()
263 || previousAnimator.getAnimatedFraction() == 0)) { in startHeightAnimation()
315 if (previousAnimator != null) { in startInsetAnimation()
318 PropertyValuesHolder[] values = previousAnimator.getValues(); in startInsetAnimation()
324 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startInsetAnimation()
343 if (properties.delay > 0 && (previousAnimator == null in startInsetAnimation()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimator.java48 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in setProperty() local
49 if (previousAnimator != null || animated) { in setProperty()
69 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in startAnimation() local
73 if (previousAnimator != null) { in startAnimation()
76 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
82 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAnimation()
95 if (previousAnimator != null) { in startAnimation()
96 previousAnimator.cancel(); in startAnimation()
111 previousAnimator); in startAnimation()
113 if (properties.delay > 0 && (previousAnimator == null in startAnimation()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DScrimController.java639 ValueAnimator previousAnimator = (ValueAnimator) scrim.getTag(TAG_KEY_ANIM); in setOrAdaptCurrentAnimation() local
646 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in setOrAdaptCurrentAnimation()
1109 ValueAnimator previousAnimator = ViewState.getChildTag(scrim, TAG_KEY_ANIM); in updateScrim() local
1110 if (previousAnimator != null) { in updateScrim()
1115 cancelAnimator(previousAnimator); in updateScrim()
1151 private void cancelAnimator(ValueAnimator previousAnimator) { in cancelAnimator() argument
1152 if (previousAnimator != null) { in cancelAnimator()
1153 previousAnimator.cancel(); in cancelAnimator()