Home
last modified time | relevance | path

Searched refs:ScaleLevel (Results 1 – 1 of 1) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/vibrator/
H A DVibrationScaler.java51 private final SparseArray<ScaleLevel> mScaleLevels;
61 mScaleLevels.put(SCALE_VERY_LOW, new ScaleLevel(SCALE_FACTOR_VERY_LOW)); in VibrationScaler()
62 mScaleLevels.put(SCALE_LOW, new ScaleLevel(SCALE_FACTOR_LOW)); in VibrationScaler()
63 mScaleLevels.put(SCALE_NONE, new ScaleLevel(SCALE_FACTOR_NONE)); in VibrationScaler()
64 mScaleLevels.put(SCALE_HIGH, new ScaleLevel(SCALE_FACTOR_HIGH)); in VibrationScaler()
65 mScaleLevels.put(SCALE_VERY_HIGH, new ScaleLevel(SCALE_FACTOR_VERY_HIGH)); in VibrationScaler()
114 ScaleLevel scale = mScaleLevels.get(currentIntensity - defaultIntensity); in scale()
162 private static final class ScaleLevel { class in VibrationScaler
165 ScaleLevel(float factor) { in ScaleLevel() method in VibrationScaler.ScaleLevel