Home
last modified time | relevance | path

Searched refs:newStartValue (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DStackStateAnimator.java413 float newStartValue = previousStartValue + relativeDiff; in startShadowAlphaAnimation() local
414 values[0].setFloatValues(newStartValue, newEndValue); in startShadowAlphaAnimation()
415 child.setTag(TAG_START_SHADOW_ALPHA, newStartValue); in startShadowAlphaAnimation()
472 int newStartValue = previousStartValue + relativeDiff; in startHeightAnimation() local
473 values[0].setIntValues(newStartValue, newEndValue); in startHeightAnimation()
474 child.setTag(TAG_START_HEIGHT, newStartValue); in startHeightAnimation()
550 int newStartValue = previousStartValue + relativeDiff; in startInsetAnimation() local
551 values[0].setIntValues(newStartValue, newEndValue); in startInsetAnimation()
552 child.setTag(TAG_START_TOP_INSET, newStartValue); in startInsetAnimation()
609 float newStartValue = previousStartValue + relativeDiff; in startAlphaAnimation() local
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java511 float newStartValue = previousStartValue + relativeDiff; in updateScrim() local
512 newStartValue = Math.max(0, Math.min(1.0f, newStartValue)); in updateScrim()
513 values[0].setFloatValues(newStartValue, alpha); in updateScrim()
514 scrim.setTag(TAG_START_ALPHA, newStartValue); in updateScrim()