Searched defs:msSinceStartScroll (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/helper/
H A DItemTouchHelper.java2105 * @param msSinceStartScroll The time passed since View is kept out of bounds.
2111 int totalSize, long msSinceStartScroll) {
2120 if (msSinceStartScroll > DRAG_SCROLL_ACCELERATION_LIMIT_TIME_MS) {
2123 timeRatio = (float) msSinceStartScroll / DRAG_SCROLL_ACCELERATION_LIMIT_TIME_MS;
2109 interpolateOutOfBoundsScroll(RecyclerView recyclerView, int viewSize, int viewSizeOutOfBounds, int totalSize, long msSinceStartScroll) argument
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DItemTouchHelper.java2139 * @param msSinceStartScroll The time passed since View is kept out of bounds.
2146 int totalSize, long msSinceStartScroll) {
2155 if (msSinceStartScroll > DRAG_SCROLL_ACCELERATION_LIMIT_TIME_MS) {
2158 timeRatio = (float) msSinceStartScroll / DRAG_SCROLL_ACCELERATION_LIMIT_TIME_MS;
2144 interpolateOutOfBoundsScroll(@onNull RecyclerView recyclerView, int viewSize, int viewSizeOutOfBounds, int totalSize, long msSinceStartScroll) argument

Completed in 1878 milliseconds