Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java444 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_ALPHA); in startAlphaAnimation() local
448 if (previousAnimator != null) { in startAlphaAnimation()
451 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAlphaAnimation()
457 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAlphaAnimation()
498 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startAlphaAnimation()
500 if (properties.delay > 0 && (previousAnimator == null in startAlphaAnimation()
501 || previousAnimator.getAnimatedFraction() == 0)) { in startAlphaAnimation()
531 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_TRANSLATION_Z); in startZTranslationAnimation() local
535 if (previousAnimator != null) { in startZTranslationAnimation()
538 PropertyValuesHolder[] values = previousAnimator.getValues(); in startZTranslationAnimation()
[all …]
DExpandableViewState.java245 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_HEIGHT); in startHeightAnimation() local
249 if (previousAnimator != null) { in startHeightAnimation()
252 PropertyValuesHolder[] values = previousAnimator.getValues(); in startHeightAnimation()
258 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startHeightAnimation()
276 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startHeightAnimation()
278 if (properties.delay > 0 && (previousAnimator == null in startHeightAnimation()
279 || previousAnimator.getAnimatedFraction() == 0)) { in startHeightAnimation()
330 ValueAnimator previousAnimator = getChildTag(child, in startClipAnimation() local
335 if (previousAnimator != null) { in startClipAnimation()
338 PropertyValuesHolder[] values = previousAnimator.getValues(); in startClipAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java50 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in setProperty() local
51 if (previousAnimator != null || animated) { in setProperty()
71 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in startAnimation() local
75 if (previousAnimator != null) { in startAnimation()
78 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
84 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAnimation()
97 if (previousAnimator != null) { in startAnimation()
98 previousAnimator.cancel(); in startAnimation()
113 previousAnimator); in startAnimation()
115 if (properties.delay > 0 && (previousAnimator == null in startAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java963 ValueAnimator previousAnimator = (ValueAnimator) scrim.getTag(TAG_KEY_ANIM); in setOrAdaptCurrentAnimation() local
970 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in setOrAdaptCurrentAnimation()
1513 ValueAnimator previousAnimator = ViewState.getChildTag(scrim, TAG_KEY_ANIM); in updateScrim() local
1514 if (previousAnimator != null) { in updateScrim()
1519 cancelAnimator(previousAnimator); in updateScrim()
1555 private void cancelAnimator(ValueAnimator previousAnimator) { in cancelAnimator() argument
1556 if (previousAnimator != null) { in cancelAnimator()
1557 previousAnimator.cancel(); in cancelAnimator()