| /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/ |
| D | DraggingInRecentsEndedEvent.java | 10 public final float velocity; field in DraggingInRecentsEndedEvent 12 public DraggingInRecentsEndedEvent(float velocity) { in DraggingInRecentsEndedEvent()
|
| /frameworks/support/dynamic-animation/src/android/support/animation/ |
| D | FlingAnimation.java | 178 float getAcceleration(float value, float velocity) { in getAcceleration() 183 boolean isAtEquilibrium(float value, float velocity) { in isAtEquilibrium() 216 MassState updateValueAndVelocity(float value, float velocity, long deltaT) { in updateValueAndVelocity() 227 public float getAcceleration(float position, float velocity) { in getAcceleration() 232 public boolean isAtEquilibrium(float value, float velocity) { in isAtEquilibrium()
|
| D | Force.java | 24 float getAcceleration(float position, float velocity); in getAcceleration() 26 boolean isAtEquilibrium(float value, float velocity); in isAtEquilibrium()
|
| D | SpringAnimation.java | 256 float getAcceleration(float value, float velocity) { in getAcceleration() 261 boolean isAtEquilibrium(float value, float velocity) { in isAtEquilibrium()
|
| D | DynamicAnimation.java | 713 abstract float getAcceleration(float value, float velocity); in getAcceleration() 718 abstract boolean isAtEquilibrium(float value, float velocity); in isAtEquilibrium() 739 float velocity); in onAnimationEnd() 757 void onAnimationUpdate(DynamicAnimation animation, float value, float velocity); in onAnimationUpdate()
|
| D | SpringForce.java | 228 public boolean isAtEquilibrium(float value, float velocity) { in isAtEquilibrium()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
| D | FlingAnimationUtils.java | 106 public void apply(Animator animator, float currValue, float endValue, float velocity) { in apply() 120 float velocity) { in apply() 135 public void apply(Animator animator, float currValue, float endValue, float velocity, in apply() 155 float velocity, float maxDistance) { in apply() 163 float endValue, float velocity, float maxDistance) { in getProperties() 221 float velocity, float maxDistance) { in applyDismissing() 241 float velocity, float maxDistance) { in applyDismissing() 249 float velocity, float maxDistance) { in getDismissingProperties() 288 private float calculateLinearOutFasterInY2(float velocity) { in calculateLinearOutFasterInY2() 335 private VelocityInterpolator(float durationSeconds, float velocity, float diff) { in VelocityInterpolator()
|
| D | NotificationMenuRow.java | 225 public boolean onTouchEvent(View view, MotionEvent ev, float velocity) { in onTouchEvent() 273 private boolean handleUpEvent(MotionEvent ev, View animView, float velocity) { in handleUpEvent()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
| D | LockscreenGestureLogger.java | 46 public void write(int gesture, int length, int velocity) { in write() 52 EventLogTags.writeSysuiLockscreenGesture(safeLookup(gesture), length, velocity); in write() local
|
| /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/ |
| D | NotificationSwipeActionHelper.java | 36 public void dismiss(View animView, float velocity); in dismiss() 41 public void snap(View animView, float velocity, float targetLeft); in snap() 56 public boolean swipedFastEnough(float translation, float velocity); in swipedFastEnough()
|
| D | NotificationMenuRowPlugin.java | 94 public boolean onTouchEvent(View view, MotionEvent ev, float velocity); in onTouchEvent()
|
| /frameworks/base/core/java/android/widget/ |
| D | OverScroller.java | 657 static private float getDeceleration(int velocity) { in getDeceleration() 732 private void startSpringback(int start, int end, int velocity) { in startSpringback() 746 void fling(int start, int velocity, int min, int max, int over) { in fling() 782 private double getSplineDeceleration(int velocity) { in getSplineDeceleration() 786 private double getSplineFlingDistance(int velocity) { in getSplineFlingDistance() 793 private int getSplineFlingDuration(int velocity) { in getSplineFlingDuration() 799 private void fitOnBounceCurve(int start, int end, int velocity) { in fitOnBounceCurve() 813 private void startBounceAfterEdge(int start, int end, int velocity) { in startBounceAfterEdge() 819 private void startAfterEdge(int start, int min, int max, int velocity) { in startAfterEdge()
|
| D | Scroller.java | 444 float velocity = (float) Math.hypot(velocityX, velocityY); in fling() local 474 private double getSplineDeceleration(float velocity) { in getSplineDeceleration() 478 private int getSplineFlingDuration(float velocity) { in getSplineFlingDuration() 484 private double getSplineFlingDistance(float velocity) { in getSplineFlingDistance()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/ |
| D | RecentsComponent.java | 47 void onDraggingInRecentsEnded(float velocity); in onDraggingInRecentsEnded()
|
| D | SwipeHelper.java | 343 public void dismissChild(final View view, float velocity, boolean useAccelerateInterpolator) { in dismissChild() 356 public void dismissChild(final View animView, float velocity, final Runnable endAction, in dismissChild() 451 public void snapChild(final View animView, final float targetLeft, float velocity) { in snapChild() 608 float velocity = getVelocity(mVelocityTracker); in onTouchEvent() local 672 float velocity = getVelocity(mVelocityTracker); in swipedFastEnough() local 679 protected boolean handleUpEvent(MotionEvent ev, View animView, float velocity, in handleUpEvent()
|
| /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
| D | PagerSnapHelperTest.java | 133 int velocity = (int) (1.000001 * mRecyclerView.getMinFlingVelocity()); in snapOnFlingSameView() local 179 private void runSnapOnMaxFlingNextView(int velocity) throws Throwable { in runSnapOnMaxFlingNextView()
|
| D | GridLayoutManagerSnappingTest.java | 118 int velocity = (int) (1.000001 * mRecyclerView.getMinFlingVelocity()); in snapOnFlingSameView() local 144 int velocity = (int) (0.25 * mRecyclerView.getMaxFlingVelocity()); in snapOnFlingNextView() local
|
| D | LinearLayoutManagerSnappingTest.java | 140 int velocity = (int) (1.000001 * mRecyclerView.getMinFlingVelocity()); in snapOnFlingSameView() local 165 int velocity = (int) (0.2 * mRecyclerView.getMaxFlingVelocity()); in snapOnFlingNextView() local
|
| D | StaggeredGridLayoutManagerSnappingTest.java | 158 int velocity = (int) (1.000001 * mRecyclerView.getMinFlingVelocity()); in snapOnFlingSameView() local 184 int velocity = (int) (0.2 * mRecyclerView.getMaxFlingVelocity()); in snapOnFlingNextView() local
|
| /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/recents/ |
| D | IRecentsNonSystemUserCallbacks.aidl | 37 void onDraggingInRecentsEnded(float velocity); in onDraggingInRecentsEnded()
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
| D | IRecentsNonSystemUserCallbacks.aidl | 37 void onDraggingInRecentsEnded(float velocity); in onDraggingInRecentsEnded()
|
| D | RecentsImplProxy.java | 109 public void onDraggingInRecentsEnded(float velocity) throws RemoteException { in onDraggingInRecentsEnded()
|
| /frameworks/support/compat/java/android/support/v4/widget/ |
| D | EdgeEffectCompat.java | 207 public boolean onAbsorb(int velocity) { in onAbsorb()
|
| /frameworks/base/core/jni/ |
| D | android_view_VelocityTracker.cpp | 105 Velocity& velocity = mCalculatedVelocity[index]; in computeCurrentVelocity() local 119 const Velocity& velocity = mCalculatedVelocity[index]; in getVelocity() local
|
| /frameworks/base/core/java/com/android/internal/widget/ |
| D | ViewPager.java | 493 boolean setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) { in setCurrentItemInternal() 535 private void scrollToItem(int position, boolean smoothScroll, int velocity, in scrollToItem() 764 void smoothScrollTo(int x, int y, int velocity) { in smoothScrollTo()
|