HomeSort by relevance Sort by last modified time
    Searched refs:bounce (Results 1 - 25 of 37) sorted by null

1 2

  /external/syslinux/com32/cmenu/libmenu/
syslnx.c 25 char *bounce; local
27 bounce = lmalloc(strlen(cmd) + 1);
28 if (!bounce)
31 strcpy(bounce, cmd);
32 load_kernel(bounce);
  /frameworks/base/core/java/android/view/animation/
BounceInterpolator.java 38 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/
Interpolator.cpp 61 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/
MainActivity.java 118 public void onPingPongResponse(long send, long bounce, long recv, String remote) {
121 Log.e(TAG, "send " + send + ", bounce " + bounce + ", recv " + recv
128 mTotalPingTime += (bounce - send);
129 mTotalPongTime += (recv - bounce);
PongReceiver.java 29 void onPingPongResponse(long send, long bounce, long recv, String remote);
  /external/syslinux/com32/gpllib/
memory.c 90 void *bounce; local
95 bounce = lmalloc(sizeof buf);
96 if (!bounce)
102 ireg.edi.w[0] = OFFS(bounce);
103 ireg.es = SEG(bounce);
113 memcpy(bounce, &buf, sizeof buf);
134 memcpy(&buf, bounce, sizeof buf);
152 lfree(bounce);
  /external/skia/samplecode/
SampleBitmapRect.cpp 50 static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) { function
62 bounce(&pt->fX, &vec->fX, limit.fLeft, limit.fRight);
63 bounce(&pt->fY, &vec->fY, limit.fTop, limit.fBottom);
72 void bounce() { function in class:BitmapRectView
142 this->bounce();
187 bounce(&fSrcR.fLeft, &fDX, fLimitR.fLeft, fLimitR.fRight - width);
  /frameworks/base/core/java/android/content/pm/
Signature.java 263 * To identify effective equality, we bounce the certificates through an
277 aPrime[i] = bounce(cf, a[i]);
281 bPrime[i] = bounce(cf, b[i]);
288 * Bounce the given {@link Signature} through a decode/encode cycle.
294 public static Signature bounce(CertificateFactory cf, Signature s) throws CertificateException { method in class:Signature
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 102 void *bounce; member in struct:unix_private_data
192 actual = read(data->dev, data->bounce, channel->block_size);
198 memcpy(buf, data->bounce, actual);
283 actual = read(data->dev, data->bounce,
293 memcpy(data->bounce, buf, actual);
298 actual = write(data->dev, data->bounce, channel->block_size);
339 if (data->bounce)
340 ext2fs_free_mem(&data->bounce);
341 retval = io_channel_alloc_buf(channel, 0, &data->bounce);
361 if (data->bounce)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
HitReactionComponent.java 273 public void setBounceOnHit(boolean bounce) {
274 mBounceOnHit = bounce;
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 534 AnimatorSet bounce = LauncherAnimUtils.createAnimatorSet(); local
539 bounce.play(tyuAnim).before(tydAnim);
540 bounce.setInterpolator(new AccelerateInterpolator());
541 bounce.start();
    [all...]
  /external/syslinux/memdisk/
memdisk16.asm 28 ; Low memory bounce buffer
597 ; Set up a temporary stack in the bounce buffer;
609 push dword (BOUNCE_SEG << 4) ; Bounce buffer address
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
FlingUpDownMethod.java 93 AnimationState.BOUNCE,
105 int BOUNCE = 2; // An idle state in which text and icon slightly bounces off its base repeatedly
107 int SETTLE = 4; // A short animation to reset from swipe and prepare for hint or bounce
284 setAnimationState(AnimationState.BOUNCE);
526 if (state == AnimationState.HINT || state == AnimationState.BOUNCE) {
559 case AnimationState.BOUNCE:
693 setAnimationState(AnimationState.BOUNCE);
698 LogUtil.i("FlingUpDownMethod.startSwipeToAnswerBounceAnimation", "Swipe bounce animation.");
723 && animationState == AnimationState.BOUNCE) {
726 LogUtil.v("FlingUpDownMethod.onAnimationEnd", "Bounce again.")
993 BounceInterpolator bounce = new BounceInterpolator(); local
    [all...]
  /build/make/tools/droiddoc/templates-ndk/assets/js/
android_3p-bundle.js     [all...]
  /build/make/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js     [all...]
  /external/doclava/res/assets/templates-sdk/assets/js/
android_3p-bundle.js     [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 916 milliseconds

1 2