HomeSort by relevance Sort by last modified time
    Searched refs:getScaledMaximumFlingVelocity (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
ViewConfigurationHelper.java 60 getScaledMaximumFlingVelocity(),
89 private int getScaledMaximumFlingVelocity() {
90 return mViewConfiguration.getScaledMaximumFlingVelocity();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewConfigurationTest.java 50 assertEquals(4000, viewConfiguration.getScaledMaximumFlingVelocity());
67 assertEquals(6000, viewConfiguration.getScaledMaximumFlingVelocity());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewConfiguration.java 206 public int getScaledMaximumFlingVelocity() {
  /frameworks/base/core/java/android/view/
ViewConfiguration.java 636 * @deprecated Use {@link #getScaledMaximumFlingVelocity()} instead.
646 public int getScaledMaximumFlingVelocity() {
GestureDetector.java 404 mMaximumFlingVelocity = configuration.getScaledMaximumFlingVelocity();
  /frameworks/base/core/java/com/android/internal/widget/
SwipeDismissLayout.java 115 mMaxFlingVelocity = vc.getScaledMaximumFlingVelocity();
RotarySelector.java 211 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewTouchHandler.java 62 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
  /frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java 178 mMaximumFlingVelocity = configuration.getScaledMaximumFlingVelocity();
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 276 float vp = Math.min(1f, velocity / (config.getScaledMaximumFlingVelocity() / 2f));
DragController.java 627 mVelocityTracker.computeCurrentVelocity(1000, config.getScaledMaximumFlingVelocity());
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekFragment.java 242 mMinimumTwoMonthFlingVelocity = viewConfig.getScaledMaximumFlingVelocity() / 2;
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 107 mMaximumVelocity = vc.getScaledMaximumFlingVelocity();
  /packages/apps/Launcher3/src/com/android/launcher3/
DeleteDropTarget.java 384 float vp = Math.min(1f, velocity / (config.getScaledMaximumFlingVelocity() / 2f));
DragController.java 629 mVelocityTracker.computeCurrentVelocity(1000, config.getScaledMaximumFlingVelocity());
PagedView.java 310 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
SlidingChallengeLayout.java 243 mMaxVelocity = vc.getScaledMaximumFlingVelocity();
    [all...]
PagedView.java 311 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java 389 mMaxVelocity = vc.getScaledMaximumFlingVelocity();
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java 252 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/widget/
ViewDragHelper.java 396 mMaxVelocity = vc.getScaledMaximumFlingVelocity();
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewLayoutTest.java 617 + (vc.getScaledMaximumFlingVelocity() - vc.getScaledMinimumFlingVelocity()) * .1f;
650 + (vc.getScaledMaximumFlingVelocity() - vc.getScaledMinimumFlingVelocity()) * .8f;
    [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 214 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
    [all...]
ScrollView.java 240 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
    [all...]
StackView.java 196 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
    [all...]

Completed in 2081 milliseconds

1 2