Searched refs:bounce (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DBounceInterpolator.java38 private static float bounce(float t) { method in class:BounceInterpolator
50 if (t < 0.3535f) return bounce(t);
51 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
52 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
53 else return bounce(t - 1.0435f) + 0.95f;
/frameworks/base/libs/hwui/
H A DInterpolator.cpp62 static float bounce(float t) { function in namespace:android::uirenderer
68 if (t < 0.3535f) return bounce(t);
69 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
70 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
71 else return bounce(t - 1.0435f) + 0.95f;
/frameworks/base/core/java/android/content/pm/
H A DSignature.java263 * To identify effective equality, we bounce the certificates through an
277 aPrime[i] = bounce(cf, a[i]);
281 bPrime[i] = bounce(cf, b[i]);
294 public static Signature bounce(CertificateFactory cf, Signature s) throws CertificateException { method in class:Signature

Completed in 99 milliseconds