Lines Matching defs:endValue

103      * @param endValue the end value of the animator
106 public void apply(Animator animator, float currValue, float endValue, float velocity) {
107 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
116 * @param endValue the end value of the animator
119 public void apply(ViewPropertyAnimator animator, float currValue, float endValue,
121 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
130 * @param endValue the end value of the animator
135 public void apply(Animator animator, float currValue, float endValue, float velocity,
137 AnimatorProperties properties = getProperties(currValue, endValue, velocity,
149 * @param endValue the end value of the animator
154 public void apply(ViewPropertyAnimator animator, float currValue, float endValue,
156 AnimatorProperties properties = getProperties(currValue, endValue, velocity,
163 float endValue, float velocity, float maxDistance) {
165 * Math.sqrt(Math.abs(endValue - currValue) / maxDistance));
166 float diff = Math.abs(endValue - currValue);
215 * @param endValue the end value of the animator
220 public void applyDismissing(Animator animator, float currValue, float endValue,
222 AnimatorProperties properties = getDismissingProperties(currValue, endValue, velocity,
235 * @param endValue the end value of the animator
240 public void applyDismissing(ViewPropertyAnimator animator, float currValue, float endValue,
242 AnimatorProperties properties = getDismissingProperties(currValue, endValue, velocity,
248 private AnimatorProperties getDismissingProperties(float currValue, float endValue,
251 * Math.pow(Math.abs(endValue - currValue) / maxDistance, 0.5f));
252 float diff = Math.abs(endValue - currValue);