Searched defs:play (Results 1 - 25 of 32) sorted by relevance

12

/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
H A DSoundHandleJme.java72 public void play() { method in class:SoundHandleJme
81 node.play();
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/
H A DSDL_mintaudio_mcsn.h37 unsigned short play; /* Replay capability */ member in struct:__anon9155
/external/webkit/Source/WebCore/page/
H A DWebKitAnimation.cpp115 void WebKitAnimation::play() function in class:WebCore::WebKitAnimation
117 m_keyframeAnimation->play();
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
H A DCinematicEvent.java49 public void play(); method in interface:CinematicEvent
H A DAbstractCinematicEvent.java102 public void play() { method in class:AbstractCinematicEvent
142 * stops the animation, next time play() is called the animation will start from the begining.
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DFullscreenVideoControllerEfl.cpp97 void FullscreenVideoController::play() function in class:FullscreenVideoController
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DMockWebServer.java87 throw new IllegalStateException("Cannot retrieve port before calling play()");
179 * Equivalent to {@code play(0)}.
181 public void play() throws IOException { method in class:MockWebServer
182 play(0);
193 public void play(int port) throws IOException { method in class:MockWebServer
/external/replicaisland/src/com/replica/replicaisland/
H A DSoundSystem.java82 synchronized public final int play(Sound sound, boolean loop, int priority) { method in class:SoundSystem
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) { method in class:SoundSystem
97 stream = mSoundPool.play(sound.soundId, volume, volume, priority, loop ? -1 : 0, rate);
130 // sounds will continue to play. Rather that reproduce all the bookkeeping
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioNode.java56 * An audio node can also play in "headspace", meaning its location
92 * {@link AudioNode#play() } is called.
129 * @param audioData The audio data contains the audio track to play.
141 * @param audioData The audio data contains the audio track to play.
245 public void play(){ method in class:AudioNode
251 * to play the same <code>AudioNode</code> multiple times. Note
260 * Stop playing the audio that was started with {@link AudioNode#play() }.
267 * Pause the audio that was started with {@link AudioNode#play() }.
322 * @param audioData The audio data contains the audio track to play.
345 * The status will be changed when either the {@link AudioNode#play() }
[all...]
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macos/
H A DSDL_syscdrom_c.h38 #define kAudioStatus 107 /* Return audio play status */
41 #define kSetTrackList 122 /* Set the track program for the audio CD to play */
44 #define kSetPlayMode 125 /* Set the audio tracks play mode */
45 #define kGetPlayMode 126 /* Get the audio tracks play mode */
72 #define kStatusError 4 /* Error occurred during audio play operation */
73 #define kStatusStopped 5 /* Audio play operation not requested */
117 unsigned char play; member in struct:CDCntrlParam::__anon9161::__anon9162
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundation.cpp253 void MediaPlayerPrivateAVFoundation::play() function in class:WebCore::MediaPlayerPrivateAVFoundation
255 LOG(Media, "MediaPlayerPrivateAVFoundation::play(%p)", this);
441 // and create the AVPlayerItem now. When the AVPlayerItem becomes ready to play, we will
442 // have access to its metadata. Or we may have been asked to become ready to play immediately.
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DMediaPlayerPrivatePhonon.cpp250 void MediaPlayerPrivatePhonon::play() function in class:WebCore::MediaPlayerPrivatePhonon
252 LOG(Media, "MediaPlayerPrivatePhonon::play()");
253 m_mediaObject->play();
H A DMediaPlayerPrivateQt.cpp260 m_mediaPlayer->play();
283 void MediaPlayerPrivateQt::play() function in class:WebCore::MediaPlayerPrivateQt
286 m_mediaPlayer->play();
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dchannel.h276 bool PlayRingbackTone(bool play, bool loop);
311 : play(p),
315 bool play; member in struct:cricket::VoiceChannel::PlayRingbackToneMessageData
345 bool PlayRingbackTone_w(bool play, bool loop);
H A Dfilemediaengine.h142 virtual bool PlayRingbackTone(bool play, bool loop) { return true; } argument
H A Dchannel.cc668 bool VoiceChannel::PlayRingbackTone(bool play, bool loop) { argument
669 PlayRingbackToneMessageData data(play, loop);
847 bool VoiceChannel::PlayRingbackTone_w(bool play, bool loop) { argument
849 if (play) {
854 return media_channel()->PlayRingbackTone(play, loop);
889 data->result = PlayRingbackTone_w(data->play, data->loop);
H A Dmediaengine.h274 virtual bool PlayRingbackTone(bool play, bool loop) { return true; } argument
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DMediaPlayerPrivateAndroid.cpp134 // the "play" state, at which point our VideoView will start downloading
169 play();
176 play();
208 // at the right time instead of real video play time, since only full
209 // screen video play is supported in Java's VideoView.
217 void play() function in class:WebCore::MediaPlayerVideoPrivate
324 m_glue->m_play = env->GetMethodID(clazz, "play", "(Ljava/lang/String;II)V");
404 void play() function in class:WebCore::MediaPlayerAudioPrivate
453 m_glue->m_play = env->GetMethodID(clazz, "play", "()V");
603 // Every time a play cal
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebMediaPlayerClientImpl.cpp249 void WebMediaPlayerClientImpl::play() function in class:WebKit::WebMediaPlayerClientImpl
252 m_webMediaPlayer->play();
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFullscreenVideoController.cpp368 void FullscreenVideoController::play() function in class:FullscreenVideoController
371 m_mediaElement->play(m_mediaElement->processingUserGesture());
397 play();
537 m_playPauseAction = gtk_action_new("play", _("Play / Pause"), _("Play or pause the media"), PAUSE_ICON_NAME);
/external/chromium/chrome/browser/tab_contents/
H A Drender_view_context_menu.cc1251 bool play = !!(params_.media_flags & WebContextMenuData::MediaPaused); local
1252 if (play) {
1261 WebMediaPlayerAction::Play, play));
/external/chromium/webkit/glue/
H A Dwebmediaplayer_impl.cc406 void WebMediaPlayerImpl::play() { function in class:webkit_glue::WebMediaPlayerImpl
/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 ... io.File fileFail int loopsFail Long durationFail private void play (org.apache.tools.ant.Project, java ...
/external/speex/libspeex/
H A Dmdf.c389 static void dump_audio(const spx_int16_t *rec, const spx_int16_t *play, const spx_int16_t *out, int len) argument
396 fwrite(play, sizeof(spx_int16_t), len, pFile);
659 EXPORT void speex_echo_playback(SpeexEchoState *st, const spx_int16_t *play) argument
671 st->play_buf[st->play_buf_pos+i] = play[i];
677 st->play_buf[st->play_buf_pos+i] = play[i];
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp1419 void AnimationBase::play() function in class:WebCore::AnimationBase

Completed in 576 milliseconds

12