Searched refs:endValue (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/ui/animation/
H A DRectEvaluatorCompat.java38 public Rect evaluate(float fraction, Rect startValue, Rect endValue) { argument
39 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction);
40 int top = startValue.top + (int) ((endValue.top - startValue.top) * fraction);
41 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction);
42 int bottom = startValue.bottom + (int) ((endValue.bottom - startValue.bottom) * fraction);
/packages/apps/Dialer/java/com/android/incallui/answer/impl/utils/
H A DFlingAnimationUtils.java61 * @param endValue the end value of the animator
64 public void apply(Animator animator, float currValue, float endValue, float velocity) { argument
65 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
74 * @param endValue the end value of the animator
78 ViewPropertyAnimator animator, float currValue, float endValue, float velocity) {
79 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
88 * @param endValue the end value of the animator
94 Animator animator, float currValue, float endValue, floa
77 apply( ViewPropertyAnimator animator, float currValue, float endValue, float velocity) argument
93 apply( Animator animator, float currValue, float endValue, float velocity, float maxDistance) argument
111 apply( ViewPropertyAnimator animator, float currValue, float endValue, float velocity, float maxDistance) argument
122 getProperties( float currValue, float endValue, float velocity, float maxDistance) argument
161 applyDismissing( Animator animator, float currValue, float endValue, float velocity, float maxDistance) argument
181 applyDismissing( ViewPropertyAnimator animator, float currValue, float endValue, float velocity, float maxDistance) argument
193 getDismissingProperties( float currValue, float endValue, float velocity, float maxDistance) argument
[all...]
/packages/apps/TV/src/com/android/tv/ui/
H A DTvViewUiManager.java379 FrameLayout.LayoutParams startValue, FrameLayout.LayoutParams endValue) {
384 interpolateMargins(lp, startValue, endValue, fraction);
568 MarginLayoutParams startValue, MarginLayoutParams endValue, float fraction) {
569 out.topMargin = interpolate(startValue.topMargin, endValue.topMargin, fraction);
570 out.bottomMargin = interpolate(startValue.bottomMargin, endValue.bottomMargin, fraction);
571 out.setMarginStart(interpolate(startValue.getMarginStart(), endValue.getMarginStart(),
573 out.setMarginEnd(interpolate(startValue.getMarginEnd(), endValue.getMarginEnd(), fraction));
574 out.width = interpolate(startValue.width, endValue.width, fraction);
575 out.height = interpolate(startValue.height, endValue.height, fraction);
567 interpolateMargins(MarginLayoutParams out, MarginLayoutParams startValue, MarginLayoutParams endValue, float fraction) argument
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPinchAnimationManager.java205 float endValue = show ? mWorkspace.getStateTransitionAnimation().mWorkspaceScrimAlpha : 0;
207 ObjectAnimator.ofFloat(mLauncher.getDragLayer(), "backgroundAlpha", endValue),
H A DAutoInstallsLayout.java633 private static String convertToDistanceFromEnd(String value, int endValue) { argument
637 return Integer.toString(endValue + x);
/packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
H A DSetupAnimationHelper.java213 public Integer evaluate(float fraction, Integer startValue, Integer endValue) {
/packages/apps/Car/Radio/src/com/android/car/radio/
H A DRadioController.java523 private void animateRadioChannelChange(float startValue, float endValue, argument
526 animator.setObjectValues(startValue, endValue);

Completed in 264 milliseconds