Home
last modified time | relevance | path

Searched refs:mVelocity (Results 1 – 10 of 10) sorted by relevance

/frameworks/support/dynamic-animation/src/android/support/animation/
DSpringAnimation.java221 mVelocity = 0; in updateValueAndVelocity()
230 MassState massState = mSpring.updateValues(mValue, mVelocity, deltaT / 2); in updateValueAndVelocity()
234 massState = mSpring.updateValues(massState.mValue, massState.mVelocity, deltaT / 2); in updateValueAndVelocity()
236 mVelocity = massState.mVelocity; in updateValueAndVelocity()
239 MassState massState = mSpring.updateValues(mValue, mVelocity, deltaT); in updateValueAndVelocity()
241 mVelocity = massState.mVelocity; in updateValueAndVelocity()
247 if (isAtEquilibrium(mValue, mVelocity)) { in updateValueAndVelocity()
249 mVelocity = 0f; in updateValueAndVelocity()
DFlingAnimation.java157 MassState state = mFlingForce.updateValueAndVelocity(mValue, mVelocity, deltaT); in updateValueAndVelocity()
159 mVelocity = state.mVelocity; in updateValueAndVelocity()
171 if (isAtEquilibrium(mValue, mVelocity)) { in updateValueAndVelocity()
217 mMassState.mVelocity = (float) (velocity * Math.exp((deltaT / 1000f) * mFriction)); in updateValueAndVelocity()
220 if (isAtEquilibrium(mMassState.mValue, mMassState.mVelocity)) { in updateValueAndVelocity()
221 mMassState.mVelocity = 0f; in updateValueAndVelocity()
DDynamicAnimation.java287 float mVelocity = 0; field in DynamicAnimation
323 float mVelocity; field in DynamicAnimation.MassState
401 mVelocity = startVelocity; in setStartVelocity()
677 mEndListeners.get(i).onAnimationEnd(this, canceled, mValue, mVelocity); in endAnimationInternal()
690 mUpdateListeners.get(i).onAnimationUpdate(this, mValue, mVelocity); in setPropertyValue()
DSpringForce.java311 mMassState.mVelocity = (float) currentVelocity; in updateValues()
/frameworks/base/core/java/android/widget/
DOverScroller.java551 private int mVelocity; field in OverScroller.SplineOverScroller
691 mVelocity = 0; in startScroll()
718 mVelocity = 0; in springback()
741 mVelocity = -delta; // only sign is used in startSpringback()
749 mCurrVelocity = mVelocity = velocity; in fling()
810 mVelocity = (int) (- mDeceleration * totalDuration); in fitOnBounceCurve()
856 final float velocitySquared = (float) mVelocity * mVelocity; in onEdgeReached()
858 final float sign = Math.signum(mVelocity); in onEdgeReached()
868 mFinal = mStart + (int) (mVelocity > 0 ? distance : -distance); in onEdgeReached()
869 mDuration = - (int) (1000.0f * mVelocity / mDeceleration); in onEdgeReached()
[all …]
DScroller.java87 private float mVelocity; field in Scroller
256 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f; in getCurrVelocity()
446 mVelocity = velocity; in fling()
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
DPipTouchState.java53 private final PointF mVelocity = new PointF(); field in PipTouchState
179 mVelocity.set(mVelocityTracker.getXVelocity(), mVelocityTracker.getYVelocity()); in onTouchEvent()
206 return mVelocity;
344 pw.println(innerPrefix + "mVelocity=" + mVelocity);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DFlingAnimationUtils.java332 private float mVelocity; field in FlingAnimationUtils.VelocityInterpolator
337 mVelocity = velocity; in VelocityInterpolator()
344 return time * mVelocity / mDiff; in getInterpolation()
/frameworks/base/core/java/com/android/internal/widget/
DPointerLocationView.java130 private final VelocityTracker mVelocity; field in PointerLocationView
178 mVelocity = VelocityTracker.obtain(); in PointerLocationView()
544 mVelocity.clear(); in onPointerEvent()
576 mVelocity.addMovement(event); in onPointerEvent()
577 mVelocity.computeCurrentVelocity(1); in onPointerEvent()
608 ps.mXVelocity = mVelocity.getXVelocity(id); in onPointerEvent()
609 ps.mYVelocity = mVelocity.getYVelocity(id); in onPointerEvent()
610 mVelocity.getEstimator(id, ps.mEstimator); in onPointerEvent()
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
DPhotoView.java1171 private float mVelocity; field in PhotoView.ScaleRunnable
1197 mVelocity = (mTargetScale - mStartScale) / ZOOM_ANIMATION_DURATION; in start()
1221 float newScale = (mStartScale + mVelocity * ellapsed); in run()
1442 private float mVelocity; field in PhotoView.RotateRunnable
1461 mVelocity = mTargetRotation / ROTATE_ANIMATION_DURATION; in start()
1486 float rotationAmount = mVelocity * delta; in run()