OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mVelocity
(Results
1 - 17
of
17
) 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);
/cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
Boid.h
36
Vector2D
mVelocity
;
Boid.cpp
46
alignment.add(b->
mVelocity
);
76
desired.sub(
mVelocity
);
82
mVelocity
.add(mAcceleration);
83
mVelocity
.limit(MAX_SPEED);
84
mPosition.add(
mVelocity
);
FlockingScene.cpp
157
Vector2D* vel = &(b->
mVelocity
);
/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/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
...]
/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;
/packages/apps/Launcher3/src/com/android/launcher3/
DeleteDropTarget.java
412
private PointF
mVelocity
;
423
mVelocity
= vel;
445
mFrom.left += (
mVelocity
.x * (curTime - mPrevTime) / 1000f);
446
mFrom.top += (
mVelocity
.y * (curTime - mPrevTime) / 1000f);
452
mVelocity
.x *= mFriction;
453
mVelocity
.y *= mFriction;
LauncherScroller.java
56
private float
mVelocity
;
235
mCurrVelocity :
mVelocity
- mDeceleration * timePassed() / 2000.0f;
431
mVelocity
= velocity;
PagedView.java
[
all
...]
/frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java
127
private final VelocityTracker
mVelocity
;
175
mVelocity
= VelocityTracker.obtain();
540
mVelocity
.clear();
572
mVelocity
.addMovement(event);
573
mVelocity
.computeCurrentVelocity(1);
604
ps.mXVelocity =
mVelocity
.getXVelocity(id);
605
ps.mYVelocity =
mVelocity
.getYVelocity(id);
606
mVelocity
.getEstimator(id, ps.mEstimator);
[
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 199 milliseconds