OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:streamIds
(Results
1 - 4
of
4
) sorted by null
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidSound.java
29
final IntArray
streamIds
= new IntArray(8);
49
if (
streamIds
.size == 8)
streamIds
.pop();
53
streamIds
.insert(0, streamId);
58
for (int i = 0, n =
streamIds
.size; i < n; i++)
59
soundPool.stop(
streamIds
.get(i));
104
if (
streamIds
.size == 8)
streamIds
.pop();
108
streamIds
.insert(0, streamId);
133
if (
streamIds
.size == 8) streamIds.pop();
[
all
...]
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSSound.java
35
private IntArray
streamIds
= new IntArray(8);
60
if (
streamIds
.size == 8)
streamIds
.pop();
64
streamIds
.insert(0, soundSource.sourceId());
86
for (int i = 0; i <
streamIds
.size; i++) {
87
if ((source = getSoundSource(
streamIds
.get(i))) != null) source.stop();
133
for (int i = 0; i <
streamIds
.size; i++) {
134
if ((source = getSoundSource(
streamIds
.get(i))) != null) source.setPaused(true);
141
for (int i = 0; i <
streamIds
.size; i++) {
142
if ((source = getSoundSource(
streamIds
.get(i))) != null) source.setPaused(false);
[
all
...]
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSSound.java
41
private IntArray
streamIds
= new IntArray(8);
66
if (
streamIds
.size == 8)
streamIds
.pop();
70
streamIds
.insert(0, soundSource.getSourceId());
92
for (int i = 0; i <
streamIds
.size; i++) {
93
if ((source = getSoundSource(
streamIds
.get(i))) != null) source.stop();
139
for (int i = 0; i <
streamIds
.size; i++) {
140
if ((source = getSoundSource(
streamIds
.get(i))) != null) source.setPaused(true);
147
for (int i = 0; i <
streamIds
.size; i++) {
148
if ((source = getSoundSource(
streamIds
.get(i))) != null) source.setPaused(false)
[
all
...]
/cts/tests/tests/media/src/android/media/cts/
SoundPoolTest.java
217
int[]
streamIds
= new int[sounds.length];
223
streamIds
[i] = mSoundPool.play(soundIds[i], LOUD, LOUD, PRIORITY, -1, 1);
226
for (int stream :
streamIds
) {
303
int[]
streamIds
= new int[soundIds.length];
305
streamIds
[i] = soundPool.play(soundIds[i],
316
for (int stream :
streamIds
) {
Completed in 724 milliseconds