Searched defs:play (Results 26 - 50 of 52) sorted by relevance

123

/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java108 public void play(final PlaylistItem item) { method in class:LocalPlayer
110 Log.d(TAG, "play: item=" + item);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DPlayback.java57 // we don't have audio focus, and can't duck (play at a low volume)
59 // we don't have focus, but can duck (play at a low volume)
146 public void play(QueueItem item) { method in class:Playback
269 * play normally; if we don't have focus, it will either leave the
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java108 public void play(final PlaylistItem item) { method in class:LocalPlayer
110 Log.d(TAG, "play: item=" + item);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackBannerControlGlue.java42 * {@link PlaybackGlueHost}. It supports standard playback control actions play/pause and
120 * The adapter key for the play/pause control.
377 play();
457 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();
H A DMediaPlayerGlue.java326 public void play(int speed) { method in class:MediaPlayerGlue
363 play();
371 play();
H A DPlaybackBaseControlGlue.java39 * {@link PlaybackGlueHost}. It supports standard playback control actions play/pause and
81 * The adapter key for the play/pause control.
387 public void play() { method in class:PlaybackBaseControlGlue
388 mPlayerAdapter.play();
480 * Event when ready state for play changes.
580 * Event when play state changed.
593 * Event when play finishes, subclass may handling repeat mode here.
H A DPlaybackControlGlue.java44 * recommended approach to handling standard playback control actions such as play/pause,
107 * The adapter key for the play/pause control.
462 play(mPlaybackSpeed);
510 play(mPlaybackSpeed);
533 play(mPlaybackSpeed);
550 play(mPlaybackSpeed);
588 public void play(int speed) { method in class:PlaybackControlGlue
592 public final void play() { method in class:PlaybackControlGlue
593 play(PLAYBACK_SPEED_NORMAL);
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
H A DPlaybackTestFragment.java321 play(PlaybackControlGlue.PLAYBACK_SPEED_NORMAL);
330 public void play(int speed) { method in class:PlaybackTestFragment.PlaybackControlHelper
H A DPlaybackTestSupportFragment.java324 play(PlaybackControlGlue.PLAYBACK_SPEED_NORMAL);
333 public void play(int speed) { method in class:PlaybackTestSupportFragment.PlaybackControlHelper
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp45 // play event logic depends on the initial time being zero not ANDROID_UNKNOWN_TIME
77 void AudioSfDecoder::play() { function in class:android::AudioSfDecoder
78 SL_LOGD("AudioSfDecoder::play");
80 GenericPlayer::play();
450 // application set play state to paused which failed, then set play state to playing
H A Dandroid_GenericPlayer.cpp145 void GenericPlayer::play() { function in class:android::GenericPlayer
146 SL_LOGD("GenericPlayer::play()");
/frameworks/base/media/java/android/media/
H A DJetPlayer.java45 * the notion of "clips", which can be triggered at any time, but that will play only at the
52 * <li>the number of segments left to play in the queue,</li>
248 public boolean play() { method in class:JetPlayer
269 * only play once. -1 means the segment will repeat indefinitely.
297 * only play once. -1 means the segment will repeat indefinitely.
H A DSoundPool.java66 * a value of 3 causes the sound to play a total of 4 times.</p>
69 * the sound to play at its original frequency (resampled, if necessary,
71 * sound to play at twice its original frequency, and a playback rate of
72 * 0.5 causes it to play at half its original frequency. The playback
76 * Priority is used when a call to play() would cause the number of active
82 * streams, the new sound will not play and the play() function will return
86 * play. For each level, there is a set of unique sounds that are used only
95 * <p>Once the sounds are loaded and play has started, the application can
96 * trigger sounds by calling SoundPool.play()
311 public final int play(int soundID, float leftVolume, float rightVolume, method in class:SoundPool
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DMediaSessionService.java43 * The service to play music. It also contains the media session.
255 * @param mediaItemList A list of media item to play.
268 * Points to the first media item in play list.
378 * be prepared, but it won't play until user press play button.
380 * When user press the play button, the speed will be reset to normal (1.0f)
384 * but it won't play.
386 * When user press the play button, the speed will be reset to normal (1.0f)
391 * again and play automatically. (The reason to enable auto play her
677 private void play() { method in class:MediaSessionService
[all...]
/frameworks/support/media-compat/api21/android/support/v4/media/session/
H A DMediaControllerCompatApi21.java137 public static void play(Object controlsObj) { method in class:MediaControllerCompatApi21.TransportControls
138 ((MediaController.TransportControls)controlsObj).play();
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DMediaSessionService.java43 * The service to play music. It also contains the media session.
255 * @param mediaItemList A list of media item to play.
268 * Points to the first media item in play list.
378 * be prepared, but it won't play until user press play button.
380 * When user press the play button, the speed will be reset to normal (1.0f)
384 * but it won't play.
386 * When user press the play button, the speed will be reset to normal (1.0f)
391 * again and play automatically. (The reason to enable auto play her
677 private void play() { method in class:MediaSessionService
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSearchBar.java810 private void play(final int resId) { method in class:SearchBar
815 mSoundPool.play(sound, FULL_LEFT_VOLUME, FULL_RIGHT_VOLUME, DEFAULT_PRIORITY,
822 play(R.raw.lb_voice_open);
826 play(R.raw.lb_voice_failure);
830 play(R.raw.lb_voice_no_input);
834 play(R.raw.lb_voice_success);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java110 * actions: {@link MediaControlIntent#ACTION_PLAY play},
200 * {@link #play}, {@link #enqueue}, and {@link #startSession}.
234 * The callback should be set before the session is created or any play
258 * Sends a request to play a media item.
270 * @param contentUri The content Uri to play.
285 public void play(Uri contentUri, String mimeType, Bundle metadata, method in class:RemotePlaybackClient
294 * Enqueues a new item to play. If the queue was previously paused, then will
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp441 status_t WifiDisplaySource::PlaybackSession::play() { function in class:android::WifiDisplaySource::PlaybackSession
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java36 * can be set up to play together, in sequence, or after a specified delay.
41 * a set of animations all at once, or the {@link AnimatorSet#play(Animator)} can be
115 // relationship captures the order of animation (i.e. parent and child will play sequentially),
171 // SeekState stores the last seeked play time as well as seek direction.
221 * Sets up this AnimatorSet to play all of the supplied animations at the same time.
222 * This is equivalent to calling {@link #play(Animator)} with the first animator in the
233 Builder builder = play(items[0]);
241 * Sets up this AnimatorSet to play all of the supplied animations at the same time.
250 builder = play(anim);
259 * Sets up this AnimatorSet to play eac
395 public Builder play(Animator anim) { method in class:AnimatorSet
[all...]
/frameworks/base/media/java/android/media/session/
H A DMediaController.java47 * receive updates from the session, such as metadata and play state changes.
172 * Get the current play queue for this session if one is set. If you only
175 * @return The current play queue or null.
549 * @param queue A list of items in the current play queue. It should
560 * @param title The title that should be displayed along with the play queue such as
596 * to play during the preparation of this session. This method can be used to speed up the
598 * state to {@link PlaybackState#STATE_PAUSED}. Afterwards, {@link #play} can be called to
611 * sessions can continue to play during the preparation of this session. This method can be
614 * {@link #play} can be called to start playback. If the preparation is not needed,
636 * can continue to play durin
686 public void play() { method in class:MediaController.TransportControls
[all...]
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp250 int SoundPool::play(int sampleID, float leftVolume, float rightVolume, function in class:android::SoundPool
253 ALOGV("play sampleID=%d, leftVolume=%f, rightVolume=%f, priority=%d, loop=%d, rate=%f",
283 ALOGV("play channel %p state = %d", channel, channel->state());
284 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
450 // if "stolen", play next event
719 void SoundChannel::play(const sp<Sample>& sample, int nextChannelID, float leftVolume, function in class:android::SoundChannel
729 ALOGV("SoundChannel::play %p: sampleID=%d, channelID=%d, leftVolume=%f, rightVolume=%f,"
867 play(sample, nextChannelID, leftVolume, rightVolume, priority, loop, rate);
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java568 speechItem.play();
793 public void play() { method in class:TextToSpeechService.SpeechItem
796 throw new IllegalStateException("play() called twice");
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java997 public void play() { method in class:MediaSessionRecord.SessionCb
1001 Slog.e(TAG, "Remote failure in play.", e);
1259 public void play() throws RemoteException { method in class:MediaSessionRecord.ControllerStub
1261 mSessionCb.play();
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DMediaControllerCompat.java55 * receive updates from the session, such as metadata and play state changes.
294 * Gets the current play queue for this session if one is set. If you only
297 * @return The current play queue or null.
304 * Adds a queue item from the given {@code description} at the end of the play queue
321 * in the play queue of this session. Shifts the queue item currently at that position
341 * with the given {@link MediaDescriptionCompat description} in the play queue of the
357 * Removes an queue item at the specified position in the play queue
706 * @param queue A list of items in the current play queue. It should
716 * @param title The title that should be displayed along with the play
1103 * start playback when a play comman
1145 public abstract void play(); method in class:MediaControllerCompat.TransportControls
1758 public void play() { method in class:MediaControllerCompat.TransportControlsBase
2326 public void play() { method in class:MediaControllerCompat.TransportControlsApi21
[all...]

Completed in 591 milliseconds

123