Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DExpandableViewState.java236 Integer previousEndValue = getChildTag(child, TAG_END_HEIGHT); in startHeightAnimation() local
238 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation()
249 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation()
318 Float previousEndValue = getChildTag(child, TAG_END_SHADOW_ALPHA); in startShadowAlphaAnimation() local
320 if (previousEndValue != null && previousEndValue == newEndValue) { in startShadowAlphaAnimation()
331 float relativeDiff = newEndValue - previousEndValue; in startShadowAlphaAnimation()
380 Integer previousEndValue = getChildTag(child, TAG_END_TOP_INSET); in startInsetAnimation() local
382 if (previousEndValue != null && previousEndValue == newEndValue) { in startInsetAnimation()
393 int relativeDiff = newEndValue - previousEndValue; in startInsetAnimation()
DViewState.java326 Float previousEndValue = getChildTag(child,TAG_END_ALPHA); in startAlphaAnimation() local
328 if (previousEndValue != null && previousEndValue == newEndValue) { in startAlphaAnimation()
339 float relativeDiff = newEndValue - previousEndValue; in startAlphaAnimation()
413 Float previousEndValue = getChildTag(child,TAG_END_TRANSLATION_Z); in startZTranslationAnimation() local
415 if (previousEndValue != null && previousEndValue == newEndValue) { in startZTranslationAnimation()
426 float relativeDiff = newEndValue - previousEndValue; in startZTranslationAnimation()
473 Float previousEndValue = getChildTag(child,TAG_END_TRANSLATION_X); in startXTranslationAnimation() local
475 if (previousEndValue != null && previousEndValue == newEndValue) { in startXTranslationAnimation()
486 float relativeDiff = newEndValue - previousEndValue; in startXTranslationAnimation()
538 Float previousEndValue = getChildTag(child,TAG_END_TRANSLATION_Y); in startYTranslationAnimation() local
[all …]
DNotificationStackScrollLayout.java2086 int previousEndValue = mEndAnimationRect.top; in startTopAnimation() local
2089 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation()
2135 int previousEndValue = mEndAnimationRect.bottom; in startBottomAnimation() local
2138 if (previousAnimator != null && previousEndValue == newEndValue) { in startBottomAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java44 Float previousEndValue = ViewState.getChildTag(view, animationEndTag); in startAnimation() local
45 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation()
57 float relativeDiff = newEndValue - previousEndValue; in startAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java501 float previousEndValue = ViewState.getChildTag(scrim, TAG_END_ALPHA); in updateScrim() local
505 float relativeDiff = alpha - previousEndValue; in updateScrim()