OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:soundPool
(Results
1 - 2
of
2
) sorted by null
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSoundPoolTest.java
11
import android.media.
SoundPool
;
27
SoundPool
soundPool
= new
SoundPool
.Builder().build();
28
assertThat(
soundPool
).isNotNull();
30
SoundPool
.OnLoadCompleteListener listener = mock(
SoundPool
.OnLoadCompleteListener.class);
31
soundPool
.setOnLoadCompleteListener(listener);
37
SoundPool
soundPool
= new SoundPool(1, AudioManager.STREAM_MUSIC, 0)
[
all
...]
/cts/tests/tests/media/src/android/media/cts/
SoundPoolTest.java
26
import android.media.
SoundPool
;
46
private
SoundPool
mSoundPool;
99
mSoundPool = new
SoundPool
.Builder().setMaxStreams(SOUNDPOOL_STREAMS)
148
mSoundPool = new
SoundPool
.Builder().setMaxStreams(SOUNDPOOL_STREAMS)
191
mSoundPool = new
SoundPool
.Builder().setMaxStreams(SOUNDPOOL_STREAMS)
221
mSoundPool = new
SoundPool
.Builder().setMaxStreams(SOUNDPOOL_STREAMS)
245
// The number of possible
SoundPool
streams simultaneously active is limited by
249
//
SoundPool
should gracefully degrade to play those streams it can.
254
SoundPool
soundPool
= null
[
all
...]
Completed in 322 milliseconds