Searched refs:mScaleLevels (Results 1 – 1 of 1) sorted by relevance
51 private final SparseArray<ScaleLevel> mScaleLevels; field in VibrationScaler60 mScaleLevels = new SparseArray<>(); in VibrationScaler()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()