Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogControllerImpl.java109 static final ArrayMap<Integer, Integer> STREAMS = new ArrayMap<>(); field in VolumeDialogControllerImpl
111 STREAMS.put(AudioSystem.STREAM_ALARM, R.string.stream_alarm); in STREAMS.put()
113 STREAMS.put(AudioSystem.STREAM_DTMF, R.string.stream_dtmf); in STREAMS.put()
114 STREAMS.put(AudioSystem.STREAM_MUSIC, R.string.stream_music); in STREAMS.put()
116 STREAMS.put(AudioSystem.STREAM_NOTIFICATION, R.string.stream_notification); in STREAMS.put()
117 STREAMS.put(AudioSystem.STREAM_RING, R.string.stream_ring); in STREAMS.put()
118 STREAMS.put(AudioSystem.STREAM_SYSTEM, R.string.stream_system); in STREAMS.put()
120 STREAMS.put(AudioSystem.STREAM_TTS, R.string.stream_tts); in STREAMS.put()
121 STREAMS.put(AudioSystem.STREAM_VOICE_CALL, R.string.stream_voice_call); in STREAMS.put()
559 for (int stream : STREAMS.keySet()) {
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/volume/
H A DVolumeDialogImplTest.java26 import static com.android.systemui.volume.VolumeDialogControllerImpl.STREAMS;
204 ss.name = STREAMS.get(i); in createShellState()