Searched refs:absMax (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.
646 * @param absMax Absolute value of the maximum value to return
649 private int clampMag(int value, int absMin, int absMax) { argument
652 if (absValue > absMax) return value > 0 ? absMax : -absMax;
657 * Clamp the magnitude of value for absMin and absMax.
663 * @param absMax Absolute value of the maximum value to return
666 private float clampMag(float value, float absMin, float absMax) { argument
669 if (absValue > absMax) retur
[all...]

Completed in 105 milliseconds