Lines Matching defs:interpolator

62      * Applies the interpolator and length to the animator, such that the fling animation is
75 * Applies the interpolator and length to the animator, such that the fling animation is
89 * Applies the interpolator and length to the animator, such that the fling animation is
104 animator.setInterpolator(properties.interpolator);
108 * Applies the interpolator and length to the animator, such that the fling animation is
123 animator.setInterpolator(properties.interpolator);
134 mAnimatorProperties.interpolator = mLinearOutSlowIn;
137 // Cross fade between fast-out-slow-in and linear interpolator with current velocity.
143 mAnimatorProperties.interpolator = superInterpolator;
146 // Just use a normal interpolator which doesn't take the velocity into account.
148 mAnimatorProperties.interpolator = Interpolators.FAST_OUT_SLOW_IN;
155 * Applies the interpolator and length to the animator, such that the fling animation is
171 animator.setInterpolator(properties.interpolator);
175 * Applies the interpolator and length to the animator, such that the fling animation is
191 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
249 * An interpolator which interpolates two interpolators with an interpolator.
273 * An interpolator which interpolates with a fixed velocity.
295 Interpolator interpolator;