Searched refs:play (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/java/applet/
H A DAudioClip.java42 void play(); method in interface:AudioClip
H A DApplet.java319 * clip exists. When this applet attempts to play the audio clip, the
335 * clip exists. When this applet attempts to play the audio clip, the
416 public void play(URL url) { method in class:Applet
419 clip.play();
432 public void play(URL url, String name) { method in class:Applet
435 clip.play();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelDirectedPlayer.java29 * to play ModelPerformer objects.
35 public void play(int performerIndex, ModelConnectionBlock[] connectionBlocks); method in interface:ModelDirectedPlayer
H A DModelStandardDirector.java65 player.play(i, null);
80 player.play(i, null);
H A DModelStandardIndexedDirector.java169 player.play(i, null);
182 player.play(i, null);
H A DJavaSoundAudioClip.java87 * samples to play as a Clip, so compare this number
130 public synchronized void play() { method in class:JavaSoundAudioClip
H A DSoftChannel.java589 // Try play back note-off triggered voices,
628 public void play(int performerIndex, ModelConnectionBlock[] connectionBlocks) { method in class:SoftChannel
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletAudioClip.java133 public synchronized void play() { method in class:AppletAudioClip
136 audioClip.play();
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_SolarisOS_PCM.c229 info->info.play.sample_rate = sampleRate;
230 info->info.play.precision = sampleSizeInBits;
231 info->info.play.channels = channels;
232 info->info.play.encoding = AUDIO_ENCODING_LINEAR;
233 info->info.play.buffer_size = bufferSizeInBytes;
234 info->info.play.pause = 1;
254 info->bufferSizeInBytes = info->info.play.buffer_size;
283 if (isSource && audioInfo.play.pause) {
284 audioInfo.play.pause = 0;
312 if (isSource && !audioInfo.play
[all...]
H A DPLATFORM_API_SolarisOS_Ports.c223 if (info->audioInfo.play.avail_ports & targetPorts[i]) {
229 info->audioInfo.play.avail_ports & targetPorts[i]);
232 info->audioInfo.play.avail_ports & targetPorts[i],
233 info->audioInfo.play.mod_ports & targetPorts[i]);
417 selectable = info->audioInfo.play.avail_ports & targetPorts[info->ports[portIndex]];
419 selectable = info->audioInfo.play.mod_ports & targetPorts[info->ports[portIndex]];
466 prinfo = &(audioInfo.play);
490 prinfo = &(audioInfo.play);
543 prinfo = &(audioInfo.play);
573 prinfo = &(audioInfo.play);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSizeRequirements.java340 float play = factor * (req.preferred - req.minimum);
341 spans[i] = (int)(req.preferred - play);
349 float play = factor * (req.preferred - req.minimum);
350 spans[i] = (int)(req.preferred - play);
374 int play = (int)(factor * (req.maximum - req.preferred));
375 spans[i] = (int) Math.min((long) req.preferred + (long) play, Integer.MAX_VALUE);
383 int play = (int)(factor * (req.maximum - req.preferred));
384 spans[i] = (int) Math.min((long) req.preferred + (long) play, Integer.MAX_VALUE);
/openjdk7/jdk/src/share/classes/sun/audio/
H A DAudioPlayer.java34 * This class provides an interface to play audio streams.
36 * To play an audio stream use:
44 * To play an audio stream from a URL use:
49 * To play a continuous sound you first have to
123 * Start playing a stream. The stream will continue to play
170 devAudio.play();
H A DAudioDevice.java338 public void play() { method in class:AudioDevice
345 System.out.println("exiting play()");
/openjdk7/jdk/test/javax/sound/midi/Gervill/ModelStandardIndexedDirector/
H A DModelStandardIndexedDirectorTest.java60 public void play(int performerIndex,

Completed in 62 milliseconds