Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java439 Float previousEndValue = getChildTag(child, TAG_END_ALPHA); in startAlphaAnimation() local
441 if (previousEndValue != null && previousEndValue == newEndValue) { in startAlphaAnimation()
452 float relativeDiff = newEndValue - previousEndValue; in startAlphaAnimation()
526 Float previousEndValue = getChildTag(child, TAG_END_TRANSLATION_Z); in startZTranslationAnimation() local
528 if (previousEndValue != null && previousEndValue == newEndValue) { in startZTranslationAnimation()
539 float relativeDiff = newEndValue - previousEndValue; in startZTranslationAnimation()
587 Float previousEndValue = getChildTag(child, TAG_END_TRANSLATION_X); in startXTranslationAnimation() local
589 if (previousEndValue != null && previousEndValue == newEndValue) { in startXTranslationAnimation()
600 float relativeDiff = newEndValue - previousEndValue; in startXTranslationAnimation()
653 Float previousEndValue = getChildTag(child, TAG_END_TRANSLATION_Y); in startYTranslationAnimation() local
[all …]
DExpandableViewState.java240 Integer previousEndValue = getChildTag(child, TAG_END_HEIGHT); in startHeightAnimation() local
242 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation()
253 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation()
324 Integer previousEndValue = getChildTag(child, in startClipAnimation() local
327 if (previousEndValue != null && previousEndValue == newEndValue) { in startClipAnimation()
339 int relativeDiff = newEndValue - previousEndValue; in startClipAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java66 Float previousEndValue = ViewState.getChildTag(view, animationEndTag); in startAnimation() local
67 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation()
79 float relativeDiff = newEndValue - previousEndValue; in startAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java964 float previousEndValue = (Float) scrim.getTag(TAG_END_ALPHA); in setOrAdaptCurrentAnimation() local
966 float relativeDiff = alpha - previousEndValue; in setOrAdaptCurrentAnimation()