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

12

/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dplay.js12 play(mediaElements[i]);
16 function play(element) { function
20 throw new Error('Can not play non HTML5 media elements.');
31 element.play();
H A Dplay_unittest.py7 from telemetry.page.actions import play namespace
24 action = play.PlayAction(playing_event_timeout_in_seconds=60)
37 action = play.PlayAction(selector='#video_1',
51 action = play.PlayAction(selector='all',
64 """Tests that wait_for_playing timeouts if video does not play."""
65 action = play.PlayAction(selector='#video_1',
75 action = play.PlayAction(selector='#video_1',
87 action = play.PlayAction(selector='#video_1',
99 action = play.PlayAction(selector='#video_1',
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A Dexterns.js10 Audio.prototype.play;
/external/chromium_org/ui/file_manager/video_player/js/cast/
H A Dcast_video_element.js26 * @param {MediaManager} media Media manager with the media to play.
27 * @param {chrome.cast.Session} session Session to play a video on.
222 play: function(opt_seeking) {
226 var play = function() { class
228 // progress, we can skip this play request.
239 this.castMedia_.play(
253 this.load(play);
255 play();
459 this.dispatchEvent(new Event('play'));
461 this.play();
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_mcsn.h37 unsigned short play; /* Replay capability */ member in struct:__anon29386
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStackTest.cpp28 AnimationPlayer* play(Animation* animation, double startTime) function in class:blink::AnimationAnimationStackTest
86 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 10);
87 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(2))).get(), 15);
88 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(3))).get(), 5);
96 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 15);
97 play(makeAnimation(makeAnimationEffect(CSSPropertyZIndex, AnimatableDouble::create(2))).get(), 10);
112 RefPtrWillBeRawPtr<AnimationPlayer> player = play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 0);
114 play(makeAnimation(makeAnimationEffect(CSSPropertyZIndex, AnimatableDouble::create(2))).get(), 0);
122 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 2);
123 play(makeAnimatio
[all...]
H A DAnimationTimeline.cpp92 AnimationPlayer* AnimationTimeline::play(AnimationNode* child) function in class:blink::AnimationTimeline
H A DAnimationPlayer.cpp450 void AnimationPlayer::play() function in class:blink::AnimationPlayer
476 play();
/external/chromium_org/content/renderer/media/
H A Dwebmediaplayer_ms.cc174 void WebMediaPlayerMS::play() { function in class:content::WebMediaPlayerMS
175 DVLOG(1) << "WebMediaPlayerMS::play";
/external/chromium_org/ppapi/proxy/
H A Dppb_audio_proxy.cc235 bool play) {
239 if (play)
234 OnMsgStartOrStop(const HostResource& audio_id, bool play) argument
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DMockWebServer.java100 throw new IllegalStateException("Cannot retrieve port before calling play()");
195 * Equivalent to {@code play(0)}.
197 public void play() throws IOException { method in class:MockWebServer
198 play(0);
209 public void play(int port) throws IOException { method in class:MockWebServer
211 throw new IllegalStateException("play() already called");
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DMockSpdyPeer.java99 public void play() throws IOException { method in class:MockSpdyPeer
/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/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaController.cpp190 // queue a task to fire a simple event named play at the MediaController,
191 scheduleEvent(EventTypeNames::play);
196 void MediaController::play() function in class:blink::MediaController
198 // When the play() method is invoked, the user agent must invoke the play method of each
201 (*it)->play();
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DMockWebServer.java116 if (port == -1) throw new IllegalStateException("Cannot retrieve port before calling play()");
230 /** Equivalent to {@code play(0)}. */
231 public void play() throws IOException { method in class:MockWebServer
232 play(0);
242 public void play(int port) throws IOException { method in class:MockWebServer
243 if (executor != null) throw new IllegalStateException("play() already called");
/external/qemu/distrib/sdl-1.2.15/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::__anon29398::__anon29399
/external/chromium_org/third_party/libjingle/source/talk/media/other/
H A Dlinphonemediaengine.h136 virtual bool PlayRingbackTone(bool play, bool loop) { return true; } argument
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Drender_view_context_menu.cc1386 bool play = !!(params_.media_flags & WebContextMenuData::MediaPaused); local
1387 if (play) {
1394 WebMediaPlayerAction::Play, play));
/external/chromium_org/media/blink/
H A Dwebmediaplayer_impl.cc273 void WebMediaPlayerImpl::play() { function in class:media::WebMediaPlayerImpl
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfilemediaengine.h225 virtual bool PlayRingbackTone(uint32 ssrc, bool play, bool loop) { argument
/external/chromium_org/third_party/skia/debugger/QT/
H A DSkDebuggerGUI.cpp811 QIcon play; local
812 play.addFile(QString::fromUtf8(":/play.png"), QSize(),
815 fActionPlay.setIcon(play);
/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/kernel-headers/original/uapi/linux/dvb/
H A Dvideo.h116 } play; member in union:video_command::__anon22969
/external/skia/debugger/QT/
H A DSkDebuggerGUI.cpp772 QIcon play; local
773 play.addFile(QString::fromUtf8(":/play.png"), QSize(),
776 fActionPlay.setIcon(play);
/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];

Completed in 4955 milliseconds

12