Lines Matching refs:Sound
36 private FixedSizeArray<Sound> mSounds;
37 private Sound mSearchDummy;
44 mSounds = new FixedSizeArray<Sound>(MAX_SOUNDS, sSoundComparator); in SoundSystem()
45 mSearchDummy = new Sound(); in SoundSystem()
62 public Sound load(int resource) { in load()
64 Sound result = null; in load()
69 result = new Sound(); in load()
82 synchronized public final int play(Sound sound, boolean loop, int priority) { in play()
94 …synchronized public final int play(Sound sound, boolean loop, int priority, float volume, float ra… in play()
175 public class Sound extends AllocationGuard { class in SoundSystem
181 private final static class SoundComparator implements Comparator<Sound> {
182 public int compare(final Sound object1, final Sound object2) { in compare()