Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java336 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_ALPHA); in startAlphaAnimation() local
340 if (previousAnimator != null) { in startAlphaAnimation()
343 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAlphaAnimation()
349 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAlphaAnimation()
390 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startAlphaAnimation()
392 if (properties.delay > 0 && (previousAnimator == null in startAlphaAnimation()
393 || previousAnimator.getAnimatedFraction() == 0)) { in startAlphaAnimation()
423 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_TRANSLATION_Z); in startZTranslationAnimation() local
427 if (previousAnimator != null) { in startZTranslationAnimation()
430 PropertyValuesHolder[] values = previousAnimator.getValues(); in startZTranslationAnimation()
[all …]
DNotificationSection.java97 ObjectAnimator previousAnimator = mTopAnimator; in startTopAnimation() local
98 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation()
103 if (previousAnimator != null) { in startTopAnimation()
107 PropertyValuesHolder[] values = previousAnimator.getValues(); 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
148 if (previousAnimator != null && previousEndValue == newEndValue) { in startBottomAnimation()
153 if (previousAnimator != null) { in startBottomAnimation()
[all …]
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()
260 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startHeightAnimation()
262 if (properties.delay > 0 && (previousAnimator == null in startHeightAnimation()
263 || previousAnimator.getAnimatedFraction() == 0)) { in startHeightAnimation()
311 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_TOP_INSET); in startInsetAnimation() local
315 if (previousAnimator != null) { in startInsetAnimation()
318 PropertyValuesHolder[] values = previousAnimator.getValues(); in startInsetAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
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 …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java457 ValueAnimator previousAnimator = (ValueAnimator) scrim.getTag(TAG_KEY_ANIM); in setOrAdaptCurrentAnimation() local
464 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in setOrAdaptCurrentAnimation()
842 ValueAnimator previousAnimator = ViewState.getChildTag(scrim, TAG_KEY_ANIM); in updateScrim() local
843 if (previousAnimator != null) { in updateScrim()
848 cancelAnimator(previousAnimator); in updateScrim()
884 private void cancelAnimator(ValueAnimator previousAnimator) { in cancelAnimator() argument
885 if (previousAnimator != null) { in cancelAnimator()
886 previousAnimator.cancel(); in cancelAnimator()