Searched refs:newEndValue (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | PropertyAnimator.java | 47 AnimatableProperty animatableProperty, float newEndValue, in setProperty() argument 52 startAnimation(view, animatableProperty, newEndValue, animated ? properties : null); in setProperty() 55 animatableProperty.getProperty().set(view, newEndValue); in setProperty() 60 AnimatableProperty animatableProperty, float newEndValue, in startAnimation() argument 67 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation() 79 float relativeDiff = newEndValue - previousEndValue; in startAnimation() 81 values[0].setFloatValues(newStartValue, newEndValue); in startAnimation() 83 view.setTag(animationEndTag, newEndValue); in startAnimation() 88 property.set(view, newEndValue); in startAnimation() 95 if (currentValue.equals(newEndValue)) { in startAnimation() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | ViewState.java | 440 final float newEndValue = this.mAlpha; in startAlphaAnimation() local 441 if (previousEndValue != null && previousEndValue == newEndValue) { in startAlphaAnimation() 452 float relativeDiff = newEndValue - previousEndValue; in startAlphaAnimation() 454 values[0].setFloatValues(newStartValue, newEndValue); in startAlphaAnimation() 456 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() 461 child.setAlpha(newEndValue); in startAlphaAnimation() 462 if (newEndValue == 0) { in startAlphaAnimation() 469 child.getAlpha(), newEndValue); in startAlphaAnimation() 479 if (newEndValue == 0 && !mWasCancelled) { in startAlphaAnimation() 512 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() [all …]
|
D | ExpandableViewState.java | 241 int newEndValue = this.height; in startHeightAnimation() local 242 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation() 253 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation() 255 values[0].setIntValues(newStartValue, newEndValue); in startHeightAnimation() 257 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 262 child.setActualHeight(newEndValue, false); in startHeightAnimation() 267 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue); in startHeightAnimation() 316 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 326 int newEndValue = clipTop ? this.clipTopAmount : this.clipBottomAmount; in startClipAnimation() local 327 if (previousEndValue != null && previousEndValue == newEndValue) { in startClipAnimation() [all …]
|