Searched refs:mMaxFlingVelocity (Results 1 - 2 of 2) sorted by relevance
/frameworks/base/core/java/com/android/internal/widget/ |
H A D | RecyclerView.java | 429 private final int mMaxFlingVelocity; field in class:RecyclerView 549 mMaxFlingVelocity = vc.getScaledMaximumFlingVelocity(); 2021 velocityX = Math.max(-mMaxFlingVelocity, Math.min(velocityX, mMaxFlingVelocity)); 2022 velocityY = Math.max(-mMaxFlingVelocity, Math.min(velocityY, mMaxFlingVelocity)); 2065 return mMaxFlingVelocity; 2850 mVelocityTracker.computeCurrentVelocity(1000, mMaxFlingVelocity);
|
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/ |
H A D | RecyclerView.java | 488 private final int mMaxFlingVelocity; field in class:RecyclerView 623 mMaxFlingVelocity = vc.getScaledMaximumFlingVelocity(); 2270 velocityX = Math.max(-mMaxFlingVelocity, Math.min(velocityX, mMaxFlingVelocity)); 2271 velocityY = Math.max(-mMaxFlingVelocity, Math.min(velocityY, mMaxFlingVelocity)); 2314 return mMaxFlingVelocity; 3160 mVelocityTracker.computeCurrentVelocity(1000, mMaxFlingVelocity);
|
Completed in 85 milliseconds