HomeSort by relevance Sort by last modified time
    Searched defs:mVelocity (Results 1 - 14 of 14) sorted by null

  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
Boid.h 36 Vector2D mVelocity;
  /external/replicaisland/src/com/replica/replicaisland/
OrbitalMagnetComponent.java 27 private Vector2 mVelocity;
36 mVelocity = new Vector2();
46 mVelocity.zero();
87 mVelocity.set(gravityVector);
88 mVelocity.multiply(timeDelta);
89 targetVelocity.subtract(mVelocity);
104 mVelocity.set(mDelta);
105 mVelocity.normalize();
107 // mVelocity is now the direction to push the player
109 mVelocity.multiply(mStrength)
    [all...]
GameObject.java 31 private Vector2 mVelocity;
83 mVelocity = new Vector2();
100 mVelocity.zero();
169 return mVelocity;
173 mVelocity.set(velocity);
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 129 private final VelocityTracker mVelocity;
177 mVelocity = VelocityTracker.obtain();
543 mVelocity.clear();
575 mVelocity.addMovement(event);
576 mVelocity.computeCurrentVelocity(1);
607 ps.mXVelocity = mVelocity.getXVelocity(id);
608 ps.mYVelocity = mVelocity.getYVelocity(id);
609 mVelocity.getEstimator(id, ps.mEstimator);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
FlingAnimationUtils.java 284 private float mVelocity;
289 mVelocity = velocity;
296 return time * mVelocity / mDiff;
  /frameworks/base/core/java/android/widget/
Scroller.java 88 private float mVelocity;
257 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
447 mVelocity = velocity;
OverScroller.java 552 private int mVelocity;
692 mVelocity = 0;
719 mVelocity = 0;
742 mVelocity = -delta; // only sign is used
750 mCurrVelocity = mVelocity = velocity;
809 mVelocity = (int) (- mDeceleration * totalDuration);
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 59 private float mVelocity;
205 return mVelocity - mDeceleration * timePassed() / 2000.0f;
394 mVelocity = velocity;
OverScroller.java 553 private int mVelocity;
696 mVelocity = 0;
723 mVelocity = 0;
746 mVelocity = -delta; // only sign is used
754 mCurrVelocity = mVelocity = velocity;
813 mVelocity = (int) (- mDeceleration * totalDuration);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 56 private float mVelocity;
235 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
431 mVelocity = velocity;
PagedView.java     [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 555 private int mVelocity;
695 mVelocity = 0;
722 mVelocity = 0;
745 mVelocity = -delta; // only sign is used
753 mCurrVelocity = mVelocity = velocity;
812 mVelocity = (int) (- mDeceleration * totalDuration);
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java     [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java     [all...]

Completed in 149 milliseconds