Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/accessibility/
DVibrationPreferenceFragmentTest.java57 private static final Map<Integer, String> INTENSITY_TO_KEY = new HashMap<>(4); field in VibrationPreferenceFragmentTest
59 INTENSITY_TO_KEY.put(Vibrator.VIBRATION_INTENSITY_OFF, KEY_INTENSITY_OFF); in INTENSITY_TO_KEY.put()
60 INTENSITY_TO_KEY.put(Vibrator.VIBRATION_INTENSITY_LOW, KEY_INTENSITY_LOW); in INTENSITY_TO_KEY.put()
61 INTENSITY_TO_KEY.put(Vibrator.VIBRATION_INTENSITY_MEDIUM, KEY_INTENSITY_MEDIUM); in INTENSITY_TO_KEY.put()
62 INTENSITY_TO_KEY.put(Vibrator.VIBRATION_INTENSITY_HIGH, KEY_INTENSITY_HIGH); in INTENSITY_TO_KEY.put()
89 for (Map.Entry<Integer, String> entry : INTENSITY_TO_KEY.entrySet()) { in changeIntensitySetting_shouldResultInCorrespondingKey()
100 for (int intensity : INTENSITY_TO_KEY.keySet()) { in changeIntensitySetting_WithoutMultipleIntensitySupport_shouldResultInOn()
129 assertThat(candidates.size()).isEqualTo(INTENSITY_TO_KEY.size()); in candidates_shouldBeSortedByIntensity()