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

  /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/android/widget/
OverScroller.java 551 private int mVelocity;
691 mVelocity = 0;
718 mVelocity = 0;
741 mVelocity = -delta; // only sign is used
749 mCurrVelocity = mVelocity = velocity;
808 mVelocity = (int) (- mDeceleration * totalDuration);
    [all...]
Scroller.java 87 private float mVelocity;
262 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
458 mVelocity = velocity;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
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...]
Scroller.java 59 private float mVelocity;
205 return mVelocity - mDeceleration * timePassed() / 2000.0f;
394 mVelocity = velocity;
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 315 private PointF mVelocity;
326 mVelocity = vel;
348 mFrom.left += (mVelocity.x * (curTime - mPrevTime) / 1000f);
349 mFrom.top += (mVelocity.y * (curTime - mPrevTime) / 1000f);
355 mVelocity.x *= mFriction;
356 mVelocity.y *= mFriction;
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 120 private final VelocityTracker mVelocity;
163 mVelocity = VelocityTracker.obtain();
527 mVelocity.clear();
558 mVelocity.addMovement(event);
559 mVelocity.computeCurrentVelocity(1);
590 ps.mXVelocity = mVelocity.getXVelocity(id);
591 ps.mYVelocity = mVelocity.getYVelocity(id);
592 mVelocity.getEstimator(id, ps.mEstimator);
    [all...]
  /external/quake/quake/src/WinQuake/
client.h 174 vec3_t mvelocity[2]; // update by server, used for lean+bob member in struct:__anon14401
176 vec3_t velocity; // lerped between mvelocity[0] and [1]
cl_parse.cpp 528 VectorCopy (cl.mvelocity[0], cl.mvelocity[1]);
536 cl.mvelocity[0][i] = MSG_ReadChar()*16;
538 cl.mvelocity[0][i] = 0;
cl_main.cpp 461 cl.velocity[i] = cl.mvelocity[1][i] +
462 frac * (cl.mvelocity[0][i] - cl.mvelocity[1][i]);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java     [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java     [all...]
  /dalvik/hit/samples/
android.hprof     [all...]

Completed in 631 milliseconds