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

/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java640 * Clamp the magnitude of value for absMin and absMax.
645 * @param absMin Absolute value of the minimum significant value to return
649 private int clampMag(int value, int absMin, int absMax) { argument
651 if (absValue < absMin) return 0;
657 * Clamp the magnitude of value for absMin and absMax.
662 * @param absMin Absolute value of the minimum significant value to return
666 private float clampMag(float value, float absMin, float absMax) { argument
668 if (absValue < absMin) return 0;

Completed in 8 milliseconds