HomeSort by relevance Sort by last modified time
    Searched refs:play (Results 151 - 175 of 597) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
PlaybackTransportRowPresenterTest.java 172 mGlue.play();
173 Mockito.verify(mImpl, times(1)).play();
362 // start play
363 mGlue.play();
364 verify(mImpl).play();
374 // press DPAD_CENTER to seek to new position and continue play
377 verify(mImpl).play();
383 // press DPAD_CENTER to continue play from 0
386 verify(mImpl).play();
404 // start play
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
AudioFrequencySpeakerActivity.java 263 play();
270 play();
276 play();
286 private void play() {
288 mSPlayer.play(true);
296 mSPlayer.play(false);
  /cts/tests/tests/media/src/android/media/cts/
AudioTrackLatencyTest.java 143 // This gives me room to cut it in half and play without glitching.
192 // Try to play an AudioTrack when the initial size is less than capacity.
205 track.play();
220 // Wait several times longer than it should take to play the data.
229 assertEquals(TEST_NAME + ": did it play all the data?",
235 // Try to play and pause an AudioTrack when the initial size is less than capacity.
245 // Start playing then pause and play in a loop.
248 track.play();
263 track.play();
320 // Play some audio for a few seconds
    [all...]
AudioTrackTest.java 442 // Test case 2: getPlaybackHeadPosition() increases after play()
461 track.play();
488 track.play();
518 track.play();
534 // Test case 4: getPlaybackHeadPosition() is > 0 after play(); pause();
553 track.play();
563 // Test case 5: getPlaybackHeadPosition() remains 0 after pause(); flush(); play();
582 track.play();
595 track.play();
597 log(TEST_NAME, "position after play =" + pos)
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
SearchBar.java 796 private void play(final int resId) { method in class:SearchBar
801 mSoundPool.play(sound, FULL_LEFT_VOLUME, FULL_RIGHT_VOLUME, DEFAULT_PRIORITY,
808 play(R.raw.lb_voice_open);
812 play(R.raw.lb_voice_failure);
816 play(R.raw.lb_voice_no_input);
820 play(R.raw.lb_voice_success);
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/media/
PlaybackBannerControlGlueTest.java 48 public void play() { method in class:PlaybackBannerControlGlueTest.PlayerAdapterSample
192 mGlue.play();
193 Mockito.verify(impl, times(1)).play();
197 // one call for play() and one call for seekTo()
  /frameworks/support/leanback/src/main/java/androidx/leanback/media/
MediaPlayerGlue.java 327 public void play(int speed) { method in class:MediaPlayerGlue
364 play();
372 play();
PlaybackBannerControlGlue.java 43 * {@link PlaybackGlueHost}. It supports standard playback control actions play/pause and
121 * The adapter key for the play/pause control.
377 play(); method
448 // PLAY_PAUSE PLAY PAUSE
457 play(); method
550 ? PlaybackControlsRow.PlayPauseAction.PLAY
657 public void play() { method in class:PlaybackBannerControlGlue
662 // Solves the situation that a player pause at the end and click play button. At this case
675 super.play();
692 * Control row shows PLAY, but the media is actually paused when the player i
    [all...]
  /hardware/qcom/display/msm8960/liboverlay/
overlayMdp.h 187 /* calls wrapper play */
188 bool play(int fd, uint32_t offset);
420 inline bool MdpData::play(int fd, uint32_t offset) { function in class:overlay::MdpData
423 if(!mdp_wrapper::play(mFd.getFD(), mOvData)){
424 ALOGE("MdpData failed to play");
  /bionic/libc/kernel/uapi/linux/dvb/
video.h 76 } play; member in union:video_command::__anon594
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
NativeMediaActivity.java 185 public static native boolean playOrPauseMediaPlayer(boolean play);
  /cts/tests/tests/view/src/android/view/cts/
TextureViewStressTestActivity.java 56 animSet.play(rotate).with(fadeIn).with(scaleY);
  /developers/build/prebuilts/gradle/PictureInPicture/app/src/main/java/com/example/android/pictureinpicture/widget/
MovieView.java 47 * (play/pause, fast forward, and fast rewind).
85 /** The resource ID for the video to play. */
269 * Sets the title of the video to play.
278 * The title of the video to play.
287 * The raw resource id of the video to play.
296 * Sets the raw resource ID of video to play.
378 public void play() { method in class:MovieView
428 play();
463 play(); method
480 mToggle.setContentDescription(getResources().getString(R.string.play));
    [all...]
  /developers/build/prebuilts/gradle/PictureInPicture/kotlinApp/app/src/main/java/com/example/android/pictureinpicture/
MainActivity.kt 53 /** The request code for play action PendingIntent. */
62 /** The intent extra value for play action. */
90 CONTROL_TYPE_PLAY -> mMovieView.play()
97 private val labelPlay: String by lazy { getString(R.string.play) }
114 // to play the video.
143 // You need to use distinct request codes for play and pause, or the PendingIntent won't
  /developers/samples/android/media/PictureInPicture/app/src/main/java/com/example/android/pictureinpicture/widget/
MovieView.java 47 * (play/pause, fast forward, and fast rewind).
85 /** The resource ID for the video to play. */
269 * Sets the title of the video to play.
278 * The title of the video to play.
287 * The raw resource id of the video to play.
296 * Sets the raw resource ID of video to play.
378 public void play() { method in class:MovieView
428 play();
463 play(); method
480 mToggle.setContentDescription(getResources().getString(R.string.play));
    [all...]
  /developers/samples/android/media/PictureInPicture/kotlinApp/app/src/main/java/com/example/android/pictureinpicture/
MainActivity.kt 53 /** The request code for play action PendingIntent. */
62 /** The intent extra value for play action. */
90 CONTROL_TYPE_PLAY -> mMovieView.play()
97 private val labelPlay: String by lazy { getString(R.string.play) }
114 // to play the video.
143 // You need to use distinct request codes for play and pause, or the PendingIntent won't
  /external/autotest/client/cros/multimedia/
video_facade_native.py 105 self._player.play()
141 """Starts playback through Play Video app.
157 """Pauses playback through Play Video app."""
163 """Stops playback through Play Video app."""
  /external/autotest/client/cros/video/
native_html5_player.py 50 def play(self): member in class:NativeHtml5Player
55 self.tab.ExecuteJavaScript('play()')
  /external/autotest/client/site_tests/video_ChromeHWDecodeUsed/
video_ChromeHWDecodeUsed.py 88 player.play()
  /external/kernel-headers/original/uapi/linux/dvb/
video.h 92 /* Play input formats: */
116 } play; member in union:video_command::__anon22800
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
SocksProxyTest.java 39 socksProxy.play();
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/scenario/
Scenario.py 37 to play a complete scenario.
164 def play(self): member in class:Scenario
  /frameworks/support/media/src/main/java/androidx/media/
MediaPlayerInterface.java 90 * for this player to be able to play the content.
97 * for data, and cannot play.
110 public abstract void play(); method in class:MediaPlayerInterface
116 * allocate resources required to play, such as audio and video decoders.
216 * @return the current data source, or null if none is set, or none available to play.
257 * Sets the volume of the audio of the media to play, expressed as a linear multiplier
311 * Called when the player is <i>prepared</i>, i.e. it is ready to play the content
314 * @param dsd the data source that the player is prepared to play.
  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 61 server.play();
  /packages/apps/Camera2/src/com/android/camera/ui/
CaptureAnimationOverlay.java 128 mFlashAnimation.play(flashAnim1).before(flashAnim2);

Completed in 689 milliseconds

1 2 3 4 5 67 8 91011>>