Lines Matching defs:interpolator

56    * Applies the interpolator and length to the animator, such that the fling animation is
69 * Applies the interpolator and length to the animator, such that the fling animation is
83 * Applies the interpolator and length to the animator, such that the fling animation is
97 animator.setInterpolator(properties.interpolator);
101 * Applies the interpolator and length to the animator, such that the fling animation is
119 animator.setInterpolator(properties.interpolator);
130 mAnimatorProperties.interpolator = linearOutSlowIn;
133 // Cross fade between fast-out-slow-in and linear interpolator with current velocity.
137 mAnimatorProperties.interpolator =
141 // Just use a normal interpolator which doesn't take the velocity into account.
143 mAnimatorProperties.interpolator = Interpolators.FAST_OUT_SLOW_IN;
150 * Applies the interpolator and length to the animator, such that the fling animation is
166 animator.setInterpolator(properties.interpolator);
170 * Applies the interpolator and length to the animator, such that the fling animation is
190 animator.setInterpolator(properties.interpolator);
206 mAnimatorProperties.interpolator = mLinearOutFasterIn;
209 // Cross fade between linear-out-faster-in and linear interpolator with current
216 mAnimatorProperties.interpolator = superInterpolator;
219 // Just use a normal interpolator which doesn't take the velocity into account.
221 mAnimatorProperties.interpolator = Interpolators.FAST_OUT_LINEAR_IN;
228 * Calculates the y2 control point for a linear-out-faster-in path interpolator depending on the
229 * velocity. The faster the velocity, the more "linear" the interpolator gets.
232 * @return the y2 control point for a cubic bezier path interpolator
246 /** An interpolator which interpolates two interpolators with an interpolator. */
268 /** An interpolator which interpolates with a fixed velocity. */
290 Interpolator interpolator;