HomeSort by relevance Sort by last modified time
    Searched defs:play (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/tools/telemetry/telemetry/page/actions/
play.js 8 // Performs the "Play" action on media satisfying selector.
12 play(mediaElements[i]);
16 function play(element) { function
20 throw new Error('Can not play non HTML5 media elements.');
31 element.play();
play_unittest.py 7 from telemetry.page.actions import play namespace
23 """Tests that with no selector Play action plays first video element."""
24 action = play.PlayAction(playing_event_timeout_in_seconds=60)
36 """Tests that Play action plays video element matching selector."""
37 action = play.PlayAction(selector='#video_1',
50 """Tests that Play action plays all video elements with selector='all'."""
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'
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
externs.js 10 Audio.prototype.play;
  /external/chromium_org/ui/file_manager/video_player/js/cast/
cast_video_element.js 26 * @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...]
  /developers/samples/android/common/src/java/com/example/android/common/play/
GoogleServicesConnectionFailedHelper.java 18 package com.example.android.common.play;
28 * Helper to handle errors from Google Play Services connections.
46 * Google Play services can resolve some errors it detects.
48 * start a Google Play services activity that can resolve
56 * Thrown if Google Play services canceled the original
PlayHelper.java 18 package com.example.android.common.play;
30 * Helper class for Google Play Services functions.
43 * Checks for Google Play Services installation on the device. If found, validates the
49 * @param requestCode If we need to download Google Play Services, the download activity will be
57 // Query for the status of Google Play services on the device
68 // If Google Play services can provide an error dialog
88 * Checks for Google Play Services installation on the device. If the service is installed but
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverHttp20Draft09Test.java 39 server.play();
61 server.play();
CookiesTest.java 67 server.play();
95 server.play();
125 server.play();
159 server.play();
192 server.play();
217 redirectTarget.play();
223 redirectSource.play();
271 server.play();
320 server.play();
DisconnectTest.java 39 server.play();
66 server.play();
ThreadInterruptTest.java 40 server.play();
67 server.play();
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationStackTest.cpp 28 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(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(2))).get(), 6)
    [all...]
AnimationTimeline.cpp 92 AnimationPlayer* AnimationTimeline::play(AnimationNode* child) function in class:blink::AnimationTimeline
  /cts/tests/tests/media/src/android/media/cts/
NonBlockingAudioTrack.java 114 public void play() { method in class:NonBlockingAudioTrack
115 mAudioTrack.play();
RingtoneManagerTest.java 142 ringtone.play();
148 newRingtone.play();
RingtoneTest.java 96 // make sure we play on STREAM_RING because we the volume on this stream is not 0
104 mRingtone.play();
112 mRingtone.play();
113 assertTrue("couldn't play ringtone " + uri, mRingtone.isPlaying());
  /external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/src/org/webrtc/voiceengine/test/
AndroidTest.java 698 final AudioTrack play = local
705 play.setPlaybackPositionUpdateListener(
711 // int wrBytes = play.write(playBuffer, count, 320);
721 // int ret = play.setPositionNotificationPeriod(160);
737 // play all at once
738 // int wrBytes = play.write(playBuffer, 0, 320000);
743 play.play();
749 // int headPos = play.getPlaybackHeadPosition();
751 // play with multiple writes
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
Player.java 24 * Abstraction of common playback operations of media items, such as play,
38 public abstract void play(final PlaylistItem item); method in class:Player
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
Player.java 24 * Abstraction of common playback operations of media items, such as play,
38 public abstract void play(final PlaylistItem item); method in class:Player
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
Player.java 24 * Abstraction of common playback operations of media items, such as play,
38 public abstract void play(final PlaylistItem item); method in class:Player
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
CustomDispatcherTest.java 38 mockWebServer.play();
59 mockWebServer.play();
  /external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
CustomDispatcherTest.java 37 mockWebServer.play();
58 mockWebServer.play();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
ConnectionPoolTest.java 75 httpServer.play();
81 spdyServer.play();
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
QueueFragment.java 252 LogHelper.d(TAG, "Play button pressed, in state " + state);
274 mTransportControls.play();
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
QueueFragment.java 252 LogHelper.d(TAG, "Play button pressed, in state " + state);
274 mTransportControls.play();
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
Player.java 32 * Abstraction of common playback operations of media items, such as play,
57 public abstract void play(final PlaylistItem item); method in class:Player

Completed in 753 milliseconds

1 2 3 4