Searched refs:bounce (Results 1 - 5 of 5) 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.cpp61 static float bounce(float t) { function in namespace:android::uirenderer
67 if (t < 0.3535f) return bounce(t);
68 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
69 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
70 else return bounce(t - 1.0435f) + 0.95f;
/frameworks/base/tests/AmSlam/src/test/amslam/
H A DMainActivity.java118 public void onPingPongResponse(long send, long bounce, long recv, String remote) { argument
121 Log.e(TAG, "send " + send + ", bounce " + bounce + ", recv " + recv
128 mTotalPingTime += (bounce - send);
129 mTotalPongTime += (recv - bounce);
H A DPongReceiver.java29 void onPingPongResponse(long send, long bounce, long recv, String remote); argument
/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 143 milliseconds