Searched defs:sound (Results 1 - 16 of 16) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DPlaySingleSoundComponent.java35 public void setSound(SoundSystem.Sound sound) { argument
36 mSound = sound;
42 SoundSystem sound = sSystemRegistry.soundSystem;
43 mSoundHandle = sound.play(mSound, false, SoundSystem.PRIORITY_NORMAL);
H A DButtonAnimationComponent.java55 SoundSystem sound = sSystemRegistry.soundSystem;
56 if (sound != null) {
57 sound.play(mDepressSound, false, SoundSystem.PRIORITY_NORMAL);
82 public void setDepressSound(Sound sound) { argument
83 mDepressSound = sound;
H A DLauncherComponent.java114 SoundSystem sound = sSystemRegistry.soundSystem;
115 if (sound != null) {
116 sound.play(mLaunchSound, false, SoundSystem.PRIORITY_NORMAL);
151 public void setLaunchSound(Sound sound) { argument
152 mLaunchSound = sound;
H A DAnimationComponent.java140 SoundSystem sound = sSystemRegistry.soundSystem;
142 // It's usually not necessary to test to see if sound is enabled or not (when it's disabled,
144 // sounds. So it's simpler to just avoid that code if sound is off.
145 if (sound.getSoundEnabled()) {
158 mRocketSoundStream = sound.play(mRocketSound, true, SoundSystem.PRIORITY_HIGH);
161 sound.resume(mRocketSoundStream);
165 sound.pause(mRocketSoundStream);
172 // a sound when it is collected. The gems are a special case, though, as we
173 // want to pick a different sound depending on how many have been collected.
181 sound
369 setRocketSound(Sound sound) argument
383 setExplosionSound(Sound sound) argument
[all...]
H A DGhostComponent.java131 SoundSystem sound = BaseObject.sSystemRegistry.soundSystem;
132 if (sound != null) {
133 mAmbientSoundStream = sound.play(mAmbientSound, true, SoundSystem.PRIORITY_NORMAL);
140 SoundSystem sound = BaseObject.sSystemRegistry.soundSystem;
141 if (sound != null) {
142 sound.stop(mAmbientSoundStream);
191 SoundSystem sound = BaseObject.sSystemRegistry.soundSystem;
192 if (sound != null) {
193 sound.stop(mAmbientSoundStream);
236 public final void setAmbientSound(Sound sound) { argument
[all...]
H A DSoundSystem.java66 // new sound.
82 synchronized public final int play(Sound sound, boolean loop, int priority) { argument
85 stream = mSoundPool.play(sound.soundId, 1.0f, 1.0f, priority, loop ? -1 : 0, 1.0f);
94 synchronized public final int play(Sound sound, boolean loop, int priority, float volume, float rate) { argument
97 stream = mSoundPool.play(sound.soundId, volume, volume, priority, loop ? -1 : 0, rate);
128 // HACK: There's no way to pause an entire sound pool, but if we
H A DHitReactionComponent.java120 SoundSystem sound = sSystemRegistry.soundSystem;
121 if (sound != null) {
122 sound.play(mDealHitSound, false, SoundSystem.PRIORITY_NORMAL);
231 SoundSystem sound = sSystemRegistry.soundSystem;
232 if (sound != null) {
233 sound.play(mTakeHitSound, false, SoundSystem.PRIORITY_NORMAL);
325 public final void setTakeHitSound(int hitType, SoundSystem.Sound sound) { argument
327 mTakeHitSound = sound;
330 public final void setDealHitSound(int hitType, SoundSystem.Sound sound) { argument
331 mDealHitSound = sound;
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jmf.jar ... tools/ant/taskdefs/optional/ org/apache/tools/ant/taskdefs/optional/sound/ org/apache/tools/ant/taskdefs/optional/sound/AntSoundPlayer.class
/external/robolectric/v1/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 348 milliseconds