Searched refs:newEndValue (Results 1 – 4 of 4) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | PropertyAnimator.java | 45 AnimatableProperty animatableProperty, float newEndValue, in setProperty() argument 53 animatableProperty.getProperty().set(view, newEndValue); in setProperty() 58 AnimatableProperty animatableProperty, float newEndValue, in startAnimation() argument 65 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation() 77 float relativeDiff = newEndValue - previousEndValue; in startAnimation() 79 values[0].setFloatValues(newStartValue, newEndValue); in startAnimation() 81 view.setTag(animationEndTag, newEndValue); in startAnimation() 86 property.set(view, newEndValue); in startAnimation() 93 if (currentValue.equals(newEndValue)) { in startAnimation() 103 ValueAnimator animator = ValueAnimator.ofFloat(currentValue, newEndValue); in startAnimation() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | ViewState.java | 440 final float newEndValue = this.mAlpha; in startAlphaAnimation() local 461 child.setAlpha(newEndValue); in startAlphaAnimation() 462 if (newEndValue == 0) { in startAlphaAnimation() 469 child.getAlpha(), newEndValue); in startAlphaAnimation() 512 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() 527 float newEndValue = this.mZTranslation; in startZTranslationAnimation() local 548 child.setTranslationZ(newEndValue); in startZTranslationAnimation() 588 float newEndValue = this.mXTranslation; in startXTranslationAnimation() local 609 child.setTranslationX(newEndValue); in startXTranslationAnimation() 654 float newEndValue = this.mYTranslation; in startYTranslationAnimation() local [all …]
|
H A D | NotificationSection.java | 94 int newEndValue = mBounds.top; in startTopAnimation() local 106 values[0].setIntValues(previousStartValue, newEndValue); in startTopAnimation() 108 mEndAnimationRect.top = newEndValue; in startTopAnimation() 113 setBackgroundTop(newEndValue); in startTopAnimation() 121 mCurrentBounds.top, newEndValue); in startTopAnimation() 136 mEndAnimationRect.top = newEndValue; in startTopAnimation() 143 int newEndValue = mBounds.bottom; in startBottomAnimation() local 156 mEndAnimationRect.bottom = newEndValue; in startBottomAnimation() 161 setBackgroundBottom(newEndValue); in startBottomAnimation() 169 mCurrentBounds.bottom, newEndValue); in startBottomAnimation() [all …]
|
H A D | ExpandableViewState.java | 244 int newEndValue = this.height; in startHeightAnimation() local 245 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation() 256 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation() 258 values[0].setIntValues(newStartValue, newEndValue); in startHeightAnimation() 260 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 265 child.setActualHeight(newEndValue, false); in startHeightAnimation() 319 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 342 int relativeDiff = newEndValue - previousEndValue; in startClipAnimation() 344 values[0].setIntValues(newStartValue, newEndValue); in startClipAnimation() 352 child.setClipTopAmount(newEndValue); in startClipAnimation() [all …]
|