/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
VelocityTrackerInterface.java | 27 public void computeCurrentVelocity(int units);
|
PlatformVelocityTracker.java | 53 public void computeCurrentVelocity(int units) { 54 mTracker.computeCurrentVelocity(units);
|
NoisyVelocityTracker.java | 66 public void computeCurrentVelocity(int units) {
|
NavigationBarGestureHelper.java | 243 mVelocityTracker.computeCurrentVelocity(1000);
|
KeyguardAffordanceHelper.java | 487 mVelocityTracker.computeCurrentVelocity(1000);
|
/frameworks/base/core/tests/coretests/src/android/view/ |
VelocityTest.java | 45 * the previous values after a call to computeCurrentVelocity() 52 vt.computeCurrentVelocity(1); 56 vt.computeCurrentVelocity(1); 67 vt.computeCurrentVelocity(1000); 78 vt.computeCurrentVelocity(1000); 91 vt.computeCurrentVelocity(1000); 104 vt.computeCurrentVelocity(1000); 121 vt.computeCurrentVelocity(1000); 137 vt.computeCurrentVelocity(1); 142 vt.computeCurrentVelocity(1) [all...] |
/frameworks/base/core/java/android/view/ |
VelocityTracker.java | 28 * {@link #computeCurrentVelocity(int)} and then call {@link #getXVelocity(int)} 130 * Equivalent to invoking {@link #computeCurrentVelocity(int, float)} with a maximum 133 * @see #computeCurrentVelocity(int, float) 135 public void computeCurrentVelocity(int units) { 152 public void computeCurrentVelocity(int units, float maxVelocity) { 158 * {@link #computeCurrentVelocity(int)} before calling this function. 168 * {@link #computeCurrentVelocity(int)} before calling this function. 178 * {@link #computeCurrentVelocity(int)} before calling this function. 189 * {@link #computeCurrentVelocity(int)} before calling this function. 202 * It is not necessary to call {@link #computeCurrentVelocity(int)} before callin [all...] |
GestureDetector.java | 534 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity); 644 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
|
/cts/tests/tests/view/src/android/view/cts/ |
VelocityTrackerTest.java | 168 mVelocityTracker.computeCurrentVelocity(1); 181 mVelocityTracker.computeCurrentVelocity(1);
|
/frameworks/base/core/jni/ |
android_view_VelocityTracker.cpp | 52 void computeCurrentVelocity(int32_t units, float maxVelocity); 81 void VelocityTrackerState::computeCurrentVelocity(int32_t units, float maxVelocity) { 176 state->computeCurrentVelocity(units, maxVelocity);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
GmailDragHelper.java | 167 mVelocityTracker.computeCurrentVelocity(1000);
|
SwipeHelper.java | 404 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
MonthListView.java | 117 mTracker.computeCurrentVelocity(1000); // in pixels per second
|
/frameworks/support/compat/java/android/support/v4/view/ |
GestureDetectorCompat.java | 267 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity); 376 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
|
/frameworks/support/design/src/android/support/design/widget/ |
HeaderBehavior.java | 169 mVelocityTracker.computeCurrentVelocity(1000);
|
/frameworks/base/core/java/com/android/internal/widget/ |
RotarySelector.java | 547 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity); 567 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
|
SwipeDismissLayout.java | 317 mVelocityTracker.computeCurrentVelocity(1000);
|
PointerLocationView.java | 576 mVelocity.computeCurrentVelocity(1); 579 mAltVelocity.computeCurrentVelocity(1); [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/ |
ConversationListSwipeHelper.java | 190 mVelocityTracker.computeCurrentVelocity(UNIT_SECONDS, maxVelocity);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
KeyboardView.java | 392 mSwipeTracker.computeCurrentVelocity(1000); [all...] |
/frameworks/base/core/java/android/inputmethodservice/ |
KeyboardView.java | 407 mSwipeTracker.computeCurrentVelocity(1000); [all...] |
/frameworks/base/core/java/android/widget/ |
SlidingDrawer.java | 433 velocityTracker.computeCurrentVelocity(mVelocityUnits); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
ExpandHelper.java | 371 mVelocityTracker.computeCurrentVelocity(1000);
|
SwipeHelper.java | 579 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, getMaxVelocity());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
TaskStackViewTouchHandler.java | 328 mVelocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
|