OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:soundIds
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/media/src/android/media/cts/
SoundPoolTest.java
224
int[]
soundIds
= new int[sounds.length];
227
soundIds
[i] = loadSampleSync(sounds[i], PRIORITY);
228
System.out.println("load: " +
soundIds
[i]);
230
for (int i = 0; i <
soundIds
.length; i++) {
231
streamIds[i] = mSoundPool.play(
soundIds
[i], LOUD, LOUD, PRIORITY, -1, 1);
238
for (int sound :
soundIds
) {
284
final int[]
soundIds
= new int[TEST_STREAMS];
285
for (int i = 0; i <
soundIds
.length; i++) {
286
soundIds
[i] = soundPool.load(mContext, sounds[i % sounds.length], PRIORITY);
294
while (loaded[0] !=
soundIds
.length)
[
all
...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSoundPool.java
30
private final AtomicInteger
soundIds
= new AtomicInteger();
68
int soundId =
soundIds
.getAndIncrement();
75
int soundId =
soundIds
.getAndIncrement();
Completed in 392 milliseconds