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/stack/
DViewState.java331 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_ALPHA); in startAlphaAnimation() local
335 if (previousAnimator != null) { in startAlphaAnimation()
338 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAlphaAnimation()
344 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAlphaAnimation()
385 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startAlphaAnimation()
387 if (properties.delay > 0 && (previousAnimator == null in startAlphaAnimation()
388 || previousAnimator.getAnimatedFraction() == 0)) { in startAlphaAnimation()
418 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_TRANSLATION_Z); in startZTranslationAnimation() local
422 if (previousAnimator != null) { in startZTranslationAnimation()
425 PropertyValuesHolder[] values = previousAnimator.getValues(); in startZTranslationAnimation()
[all …]
DExpandableViewState.java241 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_HEIGHT); in startHeightAnimation() local
245 if (previousAnimator != null) { in startHeightAnimation()
248 PropertyValuesHolder[] values = previousAnimator.getValues(); in startHeightAnimation()
254 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startHeightAnimation()
272 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startHeightAnimation()
274 if (properties.delay > 0 && (previousAnimator == null in startHeightAnimation()
275 || previousAnimator.getAnimatedFraction() == 0)) { in startHeightAnimation()
323 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_SHADOW_ALPHA); in startShadowAlphaAnimation() local
327 if (previousAnimator != null) { in startShadowAlphaAnimation()
330 PropertyValuesHolder[] values = previousAnimator.getValues(); in startShadowAlphaAnimation()
[all …]
DNotificationStackScrollLayout.java2088 ObjectAnimator previousAnimator = mTopAnimator; in startTopAnimation() local
2089 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation()
2094 if (previousAnimator != null) { in startTopAnimation()
2098 PropertyValuesHolder[] values = previousAnimator.getValues(); in startTopAnimation()
2102 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startTopAnimation()
2110 if (previousAnimator != null) { in startTopAnimation()
2111 previousAnimator.cancel(); in startTopAnimation()
2137 ObjectAnimator previousAnimator = mBottomAnimator; in startBottomAnimation() local
2138 if (previousAnimator != null && previousEndValue == newEndValue) { in startBottomAnimation()
2143 if (previousAnimator != null) { in startBottomAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java49 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in startAnimation() local
53 if (previousAnimator != null) { in startAnimation()
56 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
62 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAnimation()
80 previousAnimator); in startAnimation()
82 if (properties.delay > 0 && (previousAnimator == null in startAnimation()
83 || previousAnimator.getAnimatedFraction() == 0)) { in startAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java483 ValueAnimator previousAnimator = ViewState.getChildTag(scrim, in updateScrim() local
486 if (previousAnimator != null) { in updateScrim()
488 previousAnimator.cancel(); in updateScrim()
499 if (previousAnimator != null) { in updateScrim()
504 PropertyValuesHolder[] values = previousAnimator.getValues(); in updateScrim()
511 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in updateScrim()