Searched refs:MIN_POINTER_SPEED (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java138 public static final int MIN_POINTER_SPEED = -7; field in class:InputManager
550 * @return The pointer speed as a value between {@link #MIN_POINTER_SPEED} and
572 * @param speed The pointer speed as a value between {@link #MIN_POINTER_SPEED} and
578 if (speed < MIN_POINTER_SPEED || speed > MAX_POINTER_SPEED) {
592 * @param speed The pointer speed as a value between {@link #MIN_POINTER_SPEED} and
598 if (speed < MIN_POINTER_SPEED || speed > MAX_POINTER_SPEED) {
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java1218 if (speed < InputManager.MIN_POINTER_SPEED || speed > InputManager.MAX_POINTER_SPEED) {
1231 speed = Math.min(Math.max(speed, InputManager.MIN_POINTER_SPEED),

Completed in 421 milliseconds