HomeSort by relevance Sort by last modified time
    Searched refs:MIN_POINTER_SPEED (Results 1 - 3 of 3) sorted by null

  /packages/apps/Settings/src/com/android/settings/
PointerSpeedPreference.java 71 mSeekBar.setMax(InputManager.MAX_POINTER_SPEED - InputManager.MIN_POINTER_SPEED);
73 mSeekBar.setProgress(mOldSpeed - InputManager.MIN_POINTER_SPEED);
79 mIm.tryPointerSpeed(progress + InputManager.MIN_POINTER_SPEED);
89 mIm.tryPointerSpeed(seekBar.getProgress() + InputManager.MIN_POINTER_SPEED);
94 mSeekBar.setProgress(speed - InputManager.MIN_POINTER_SPEED);
105 mSeekBar.getProgress() + InputManager.MIN_POINTER_SPEED);
147 mIm.tryPointerSpeed(myState.progress + InputManager.MIN_POINTER_SPEED);
  /frameworks/base/core/java/android/hardware/input/
InputManager.java 135 public static final int MIN_POINTER_SPEED = -7;
510 * @return The pointer speed as a value between {@link #MIN_POINTER_SPEED} and
532 * @param speed The pointer speed as a value between {@link #MIN_POINTER_SPEED} and
538 if (speed < MIN_POINTER_SPEED || speed > MAX_POINTER_SPEED) {
552 * @param speed The pointer speed as a value between {@link #MIN_POINTER_SPEED} and
558 if (speed < MIN_POINTER_SPEED || speed > MAX_POINTER_SPEED) {
  /frameworks/base/services/java/com/android/server/input/
InputManagerService.java     [all...]

Completed in 74 milliseconds