Searched refs:newEndValue (Results 1 – 4 of 4) sorted by relevance
/aosp12/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 …]
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | ViewState.java | 345 final float newEndValue = this.alpha; in startAlphaAnimation() local 366 child.setAlpha(newEndValue); in startAlphaAnimation() 367 if (newEndValue == 0) { in startAlphaAnimation() 374 child.getAlpha(), newEndValue); in startAlphaAnimation() 417 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() 432 float newEndValue = this.zTranslation; in startZTranslationAnimation() local 453 child.setTranslationZ(newEndValue); in startZTranslationAnimation() 493 float newEndValue = this.xTranslation; in startXTranslationAnimation() local 514 child.setTranslationX(newEndValue); in startXTranslationAnimation() 559 float newEndValue = this.yTranslation; in startYTranslationAnimation() local [all …]
|
H A D | ExpandableViewState.java | 225 int newEndValue = this.height; in startHeightAnimation() local 237 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation() 239 values[0].setIntValues(newStartValue, newEndValue); in startHeightAnimation() 241 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 246 child.setActualHeight(newEndValue, false); in startHeightAnimation() 300 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 307 int newEndValue = this.clipTopAmount; in startInsetAnimation() local 319 int relativeDiff = newEndValue - previousEndValue; in startInsetAnimation() 323 child.setTag(TAG_END_TOP_INSET, newEndValue); in startInsetAnimation() 328 child.setClipTopAmount(newEndValue); in startInsetAnimation() [all …]
|
H A D | NotificationSection.java | 96 int newEndValue = mBounds.top; in startTopAnimation() local 108 values[0].setIntValues(previousStartValue, newEndValue); in startTopAnimation() 110 mEndAnimationRect.top = newEndValue; in startTopAnimation() 115 setBackgroundTop(newEndValue); in startTopAnimation() 123 mCurrentBounds.top, newEndValue); in startTopAnimation() 138 mEndAnimationRect.top = newEndValue; in startTopAnimation() 146 int newEndValue = mBounds.bottom; in startBottomAnimation() local 159 mEndAnimationRect.bottom = newEndValue; in startBottomAnimation() 164 setBackgroundBottom(newEndValue); in startBottomAnimation() 172 mCurrentBounds.bottom, newEndValue); in startBottomAnimation() [all …]
|