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

/frameworks/base/core/java/com/android/internal/widget/helper/
H A DItemTouchHelper.java2102 * @param viewSizeOutOfBounds The total size of the View that is out of bounds. This value
2110 int viewSize, int viewSizeOutOfBounds,
2113 final int absOutOfBounds = Math.abs(viewSizeOutOfBounds);
2114 final int direction = (int) Math.signum(viewSizeOutOfBounds);
2128 return viewSizeOutOfBounds > 0 ? 1 : -1;
2109 interpolateOutOfBoundsScroll(RecyclerView recyclerView, int viewSize, int viewSizeOutOfBounds, int totalSize, long msSinceStartScroll) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java2108 * @param viewSizeOutOfBounds The total size of the View that is out of bounds. This value
2116 int viewSize, int viewSizeOutOfBounds,
2119 final int absOutOfBounds = Math.abs(viewSizeOutOfBounds);
2120 final int direction = (int) Math.signum(viewSizeOutOfBounds);
2134 return viewSizeOutOfBounds > 0 ? 1 : -1;
2115 interpolateOutOfBoundsScroll(RecyclerView recyclerView, int viewSize, int viewSizeOutOfBounds, int totalSize, long msSinceStartScroll) argument

Completed in 116 milliseconds