Searched refs:newEndValue (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | PropertyAnimator.java | 38 AnimatableProperty animatableProperty, float newEndValue, in setProperty() argument 43 startAnimation(view, animatableProperty, newEndValue, properties); in setProperty() 46 animatableProperty.getProperty().set(view, newEndValue); in setProperty() 51 AnimatableProperty animatableProperty, float newEndValue, in startAnimation() argument 58 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation() 70 float relativeDiff = newEndValue - previousEndValue; in startAnimation() 72 values[0].setFloatValues(newStartValue, newEndValue); in startAnimation() 74 view.setTag(animationEndTag, newEndValue); in startAnimation() 79 property.set(view, newEndValue); in startAnimation() 85 ValueAnimator animator = ValueAnimator.ofFloat(currentValue, newEndValue); in startAnimation() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | ViewState.java | 332 final float newEndValue = this.alpha; in startAlphaAnimation() local 333 if (previousEndValue != null && previousEndValue == newEndValue) { in startAlphaAnimation() 344 float relativeDiff = newEndValue - previousEndValue; in startAlphaAnimation() 346 values[0].setFloatValues(newStartValue, newEndValue); in startAlphaAnimation() 348 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() 353 child.setAlpha(newEndValue); in startAlphaAnimation() 354 if (newEndValue == 0) { in startAlphaAnimation() 361 child.getAlpha(), newEndValue); in startAlphaAnimation() 371 if (newEndValue == 0 && !mWasCancelled) { in startAlphaAnimation() 404 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() [all …]
|
D | NotificationSection.java | 87 int newEndValue = mBounds.top; in startTopAnimation() local 89 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation() 99 values[0].setIntValues(previousStartValue, newEndValue); in startTopAnimation() 101 mEndAnimationRect.top = newEndValue; in startTopAnimation() 106 setBackgroundTop(newEndValue); in startTopAnimation() 114 mCurrentBounds.top, newEndValue); in startTopAnimation() 129 mEndAnimationRect.top = newEndValue; in startTopAnimation() 137 int newEndValue = mBounds.bottom; in startBottomAnimation() local 139 if (previousAnimator != null && previousEndValue == newEndValue) { in startBottomAnimation() 148 values[0].setIntValues(previousStartValue, newEndValue); in startBottomAnimation() [all …]
|
D | ExpandableViewState.java | 233 int newEndValue = this.height; in startHeightAnimation() local 234 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation() 245 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation() 247 values[0].setIntValues(newStartValue, newEndValue); in startHeightAnimation() 249 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 254 child.setActualHeight(newEndValue, false); in startHeightAnimation() 259 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue); in startHeightAnimation() 307 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 314 int newEndValue = this.clipTopAmount; in startInsetAnimation() local 315 if (previousEndValue != null && previousEndValue == newEndValue) { in startInsetAnimation() [all …]
|