Searched refs:newEndValue (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | ExpandableViewState.java | 253 int newEndValue = this.height; in startHeightAnimation() local 254 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation() 265 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation() 267 values[0].setIntValues(newStartValue, newEndValue); in startHeightAnimation() 269 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 274 child.setActualHeight(newEndValue, false); in startHeightAnimation() 279 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue); in startHeightAnimation() 327 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation() 335 float newEndValue = this.shadowAlpha; in startShadowAlphaAnimation() local 336 if (previousEndValue != null && previousEndValue == newEndValue) { in startShadowAlphaAnimation() [all …]
|
D | ViewState.java | 326 final float newEndValue = this.alpha; in startAlphaAnimation() local 327 if (previousEndValue != null && previousEndValue == newEndValue) { in startAlphaAnimation() 338 float relativeDiff = newEndValue - previousEndValue; in startAlphaAnimation() 340 values[0].setFloatValues(newStartValue, newEndValue); in startAlphaAnimation() 342 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() 347 child.setAlpha(newEndValue); in startAlphaAnimation() 348 if (newEndValue == 0) { in startAlphaAnimation() 355 child.getAlpha(), newEndValue); in startAlphaAnimation() 365 if (newEndValue == 0 && !mWasCancelled) { in startAlphaAnimation() 398 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation() [all …]
|
D | NotificationStackScrollLayout.java | 2302 int newEndValue = mBackgroundBounds.top; 2304 if (previousAnimator != null && previousEndValue == newEndValue) { 2314 values[0].setIntValues(previousStartValue, newEndValue); 2316 mEndAnimationRect.top = newEndValue; 2321 setBackgroundTop(newEndValue); 2329 mCurrentBounds.top, newEndValue); 2344 mEndAnimationRect.top = newEndValue; 2351 int newEndValue = mBackgroundBounds.bottom; 2353 if (previousAnimator != null && previousEndValue == newEndValue) { 2362 values[0].setIntValues(previousStartValue, newEndValue); [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | PropertyAnimator.java | 39 AnimatableProperty animatableProperty, float newEndValue, in setProperty() argument 44 startAnimation(view, animatableProperty, newEndValue, properties); in setProperty() 47 animatableProperty.getProperty().set(view, newEndValue); in setProperty() 52 AnimatableProperty animatableProperty, float newEndValue, in startAnimation() argument 59 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation() 71 float relativeDiff = newEndValue - previousEndValue; in startAnimation() 73 values[0].setFloatValues(newStartValue, newEndValue); in startAnimation() 75 view.setTag(animationEndTag, newEndValue); in startAnimation() 80 property.set(view, newEndValue); in startAnimation() 86 ValueAnimator animator = ValueAnimator.ofFloat(currentValue, newEndValue); in startAnimation() [all …]
|