Searched refs:endValue (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Messaging/src/com/android/messaging/ui/animation/ |
D | RectEvaluatorCompat.java | 38 public Rect evaluate(float fraction, Rect startValue, Rect endValue) { in evaluate() argument 39 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction); in evaluate() 40 int top = startValue.top + (int) ((endValue.top - startValue.top) * fraction); in evaluate() 41 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction); in evaluate() 42 int bottom = startValue.bottom + (int) ((endValue.bottom - startValue.bottom) * fraction); in evaluate()
|
/packages/apps/TV/src/com/android/tv/ui/ |
D | TvViewUiManager.java | 496 FrameLayout.LayoutParams startValue, FrameLayout.LayoutParams endValue) { in setTvViewPosition() 501 interpolateMarginsRelative(lp, startValue, endValue, fraction); in setTvViewPosition() 808 MarginLayoutParams startValue, MarginLayoutParams endValue, float fraction) { in interpolateMarginsRelative() argument 809 out.topMargin = interpolate(startValue.topMargin, endValue.topMargin, fraction); in interpolateMarginsRelative() 810 out.bottomMargin = interpolate(startValue.bottomMargin, endValue.bottomMargin, fraction); in interpolateMarginsRelative() 811 out.setMarginStart(interpolate(startValue.getMarginStart(), endValue.getMarginStart(), in interpolateMarginsRelative() 813 out.setMarginEnd(interpolate(startValue.getMarginEnd(), endValue.getMarginEnd(), fraction)); in interpolateMarginsRelative() 814 out.width = interpolate(startValue.width, endValue.width, fraction); in interpolateMarginsRelative() 815 out.height = interpolate(startValue.height, endValue.height, fraction); in interpolateMarginsRelative()
|
/packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/ |
D | SetupAnimationHelper.java | 210 public Integer evaluate(float fraction, Integer startValue, Integer endValue) { in createFrameAnimatorWithDelay()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | AutoInstallsLayout.java | 657 private static String convertToDistanceFromEnd(String value, int endValue) { in convertToDistanceFromEnd() argument 661 return Integer.toString(endValue + x); in convertToDistanceFromEnd()
|