HomeSort by relevance Sort by last modified time
    Searched defs:mSounds (Results 1 - 3 of 3) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
SoundSystem.java 36 private FixedSizeArray<Sound> mSounds;
44 mSounds = new FixedSizeArray<Sound>(MAX_SOUNDS, sSoundComparator);
55 mSounds.clear();
72 mSounds.add(result);
73 mSounds.sort(false);
76 result = mSounds.get(index);
164 return mSounds.find(mSearchDummy, false);
  /frameworks/base/media/java/android/media/
MediaActionSound.java 48 private SoundState[] mSounds;
133 mSounds = new SoundState[SOUND_FILES.length];
134 for (int i = 0; i < mSounds.length; i++) {
135 mSounds[i] = new SoundState(i);
168 SoundState sound = mSounds[soundName];
218 SoundState sound = mSounds[soundName];
246 for (SoundState sound : mSounds) {
288 for (SoundState sound : mSounds) {
  /frameworks/base/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java 73 private int[] mSounds;
117 mSounds = new int[numSounds];
122 mSounds[index] = loadSound(mTestFiles[index], NORMAL_PRIORITY);
123 mLastSample = mSounds[index];
132 int count = mSounds.length;
134 int id = mSoundPool.play(mSounds[index], DEFAULT_VOLUME, DEFAULT_VOLUME,
156 int id = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME,
177 int id = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME,
202 int normalId = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME,
212 int id = mSoundPool.play(mSounds[1], DEFAULT_VOLUME, DEFAULT_VOLUME
    [all...]

Completed in 66 milliseconds