Lines Matching refs:t
288 public float getInterpolation(float t) { in createFlingToTrashAnimatorListener()
289 return t * t * t * t * t * t * t * t; in createFlingToTrashAnimatorListener()
296 float t = ((Float) animation.getAnimatedValue()).floatValue(); in createFlingToTrashAnimatorListener() local
297 float tp = scaleAlphaInterpolator.getInterpolation(t); in createFlingToTrashAnimatorListener()
303 float x = (1f - t) * (1f - t) * (x1 - x1o) + 2 * (1f - t) * t * (x2 - x1o) + in createFlingToTrashAnimatorListener()
304 (t * t) * x3; in createFlingToTrashAnimatorListener()
305 float y = (1f - t) * (1f - t) * (y1 - y1o) + 2 * (1f - t) * t * (y2 - x1o) + in createFlingToTrashAnimatorListener()
306 (t * t) * y3; in createFlingToTrashAnimatorListener()
344 float t = ((Float) animation.getAnimatedValue()).floatValue();
362 dragView.setAlpha(1f - mAlphaInterpolator.getInterpolation(t));
411 public float getInterpolation(float t) {
419 return Math.min(1f, mOffset + t);