OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:soundname
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/media/java/android/media/
MediaActionSound.java
110
* @param
soundName
The type of sound to preload, selected from
119
public synchronized void load(int
soundName
) {
120
if (
soundName
< 0 ||
soundName
>= SOUND_FILES.length) {
121
throw new RuntimeException("Unknown sound requested: " +
soundName
);
123
if (mSoundIds[
soundName
] == SOUND_NOT_LOADED) {
124
mSoundIds[
soundName
] =
125
mSoundPool.load(SOUND_FILES[
soundName
], 1);
148
* @param
soundName
The type of sound to play, selected from
158
public synchronized void play(int
soundName
) {
[
all
...]
/external/chromium_org/chrome/browser/notifications/
notification_ui_manager_mac.mm
43
@property(copy) NSString*
soundName
;
Completed in 122 milliseconds