HomeSort by relevance Sort by last modified time
    Searched refs:playlist (Results 1 - 25 of 25) sorted by null

  /external/libmtp/examples/
newplaylist.c 3 * Example program to create a playlist on a device.
72 printf("You need to supply a playlist name.\n");
89 LIBMTP_playlist_t *playlist = LIBMTP_new_playlist_t(); local
90 playlist->name = playlistname;
91 playlist->no_tracks = idcount;
92 playlist->tracks = ids;
93 playlist->parent_id = 0;
94 playlist->storage_id = 0;
95 int ret = LIBMTP_Create_New_Playlist(device,playlist);
97 printf("Couldn't create playlist object\n")
    [all...]
getplaylist.c 52 LIBMTP_playlist_t *playlist; local
60 fprintf(stderr, "Just a playlist ID is required\n");
64 // Sanity check playlist ID
70 fprintf(stderr, "bad playlist id %u\n", id);
81 playlist = LIBMTP_Get_Playlist(device,id);
83 if (playlist != NULL) {
84 dump_playlist(device,playlist);
87 LIBMTP_destroy_playlist_t(playlist);
  /external/chromium_org/ui/file_manager/file_manager/audio_player/js/
audio_player.js 30 * Whether if the playlist is expanded or not. This value is changed by
94 * Loads a new playlist.
95 * @param {Playlist} playlist Playlist object passed via mediaPlayerPrivate.
97 AudioPlayer.prototype.load = function(playlist) {
102 // playlist member is not changed after entries are resolved.
103 window.appState = JSON.parse(JSON.stringify(playlist)); // cloning
110 util.URLsToEntries(playlist.items, function(entries) {
113 var position = playlist.position || 0
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/media/
audio_player.js 92 * Load a new playlist.
93 * @param {Playlist} playlist Playlist object passed via mediaPlayerPrivate.
95 AudioPlayer.prototype.load = function(playlist) {
101 // playlist member is not changed after entries are resolved.
102 window.appState = JSON.parse(JSON.stringify(playlist));
107 util.URLsToEntries(playlist.items, function(entries) {
137 this.select_(playlist.position, !!playlist.time)
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
control_panel.css 34 /* Customized scrollbar for the playlist. */
372 .media-button.playlist {
377 .media-button.playlist > label > .icon {
384 .media-button.playlist > label > input:checked + .icon {
  /packages/apps/Music/src/com/android/music/
CreatePlaylist.java 55 mPlaylist = (EditText)findViewById(R.id.playlist);
88 // check if playlist with current name exists already, and warn the user if so.
151 // you have playlists named "New Playlist 1"/10/2/3/4/5/6/7/8/9, where
152 // making only one pass would result in "New Playlist 10" being erroneously
RenamePlaylist.java 56 mPlaylist = (EditText)findViewById(R.id.playlist);
97 // check if playlist with current name exists already, and warn the user if so.
MediaPlaybackActivity.java 399 .putExtra("playlist", "nowplaying")
601 long playlist = item.getIntent().getLongExtra("playlist", 0); local
602 MusicUtils.addToPlaylist(this, list, playlist);
650 int playlist = Integer.parseInt(uri.getLastPathSegment()); local
651 MusicUtils.addToPlaylist(this, list, playlist);
    [all...]
AlbumBrowserActivity.java 151 // in the middle of specifying a playlist to add the item to.
323 long playlist = item.getIntent().getLongExtra("playlist", 0); local
324 MusicUtils.addToPlaylist(this, list, playlist);
ArtistAlbumBrowserActivity.java 150 // in the middle of specifying a playlist to add the item to.
418 long playlist = item.getIntent().getLongExtra("playlist", 0); local
419 MusicUtils.addToPlaylist(this, list, playlist);
    [all...]
MusicUtils.java 404 * Fills out the given submenu with items for "new playlist" and
407 * the selected playlist, NEW_PLAYLIST if a new playlist
408 * should be created, and QUEUE if the "current playlist" was
434 intent.putExtra("playlist", cur.getLong(0));
474 // step 1: remove selected tracks from the current playlist, as well
479 // remove from current playlist
539 * @param ids The source array containing all the ids to be added to the playlist
572 // need to determine the number of items currently in the playlist,
808 // figure out if we need to restart with a new playlist,
810 long [] playlist = sService.getQueue(); local
    [all...]
TrackBrowserActivity.java 126 mPlaylist = icicle.getString("playlist");
134 mPlaylist = intent.getStringExtra("playlist");
351 // in the middle of specifying a playlist to add the item to.
355 outcicle.putString("playlist", mPlaylist);
532 // update a saved playlist
549 Log.d(LOGTAG, "No view when removing playlist item " + which);
705 long playlist = item.getIntent().getLongExtra("playlist", 0); local
706 MusicUtils.addToPlaylist(this, list, playlist);
820 // remove track from playlist
    [all...]
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 325 ALOGV("Need to refresh playlist in %" PRId64 , maxDelayUs);
634 // when we cannot make out from the manifest what streams are included in a playlist
683 // refresh the playlist will become 0
691 sp<M3UParser> playlist = mSession->fetchPlaylist( local
694 if (playlist == NULL) {
696 // We succeeded in fetching the playlist, but it was
703 ALOGE("failed to load playlist at url '%s'", mURI.c_str());
709 mPlaylist = playlist;
795 // playlist's target duration or 3 seconds, whichever is less
827 ALOGE("Cannot find sequence number %d in playlist "
    [all...]
LiveSession.cpp 201 // adaptive streaming, discontinuities in the playlist
664 ALOGE("unable to fetch master playlist %s.", uriDebugString(url).c_str());
671 // initial bandwidth by listing it first in the variant playlist.
942 // playlist unchanged
953 sp<M3UParser> playlist = local
956 if (playlist->initCheck() != OK) {
957 ALOGE("failed to parse .m3u8 playlist");
962 return playlist;
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 4408 long playlist = Long.valueOf(segments.get(3)); local
    [all...]
  /external/libmtp/src/
libmtp.c 43 #include "playlist-spl.h"
365 register_filetype("Abstract Playlist file", LIBMTP_FILETYPE_PLAYLIST, PTP_OFC_MTP_AbstractAudioVideoPlaylist);
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/background/js/
background.js 833 * @param {Object} playlist Playlist.
837 function launchAudioPlayer(playlist, opt_displayedId) {
839 audioPlayer.launch(playlist, false, function(appWindow) {
  /build/tools/droiddoc/templates-ds/assets/css/
default.css     [all...]
  /build/tools/droiddoc/templates-sac/assets/css/
default.css     [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
MainActivity.java 300 mPlayListView = (ListView) findViewById(R.id.playlist);
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
MainActivity.java 300 mPlayListView = (ListView) findViewById(R.id.playlist);
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouterActivity.java 303 mPlayListView = (ListView) findViewById(R.id.playlist);
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
MainActivity.java 300 mPlayListView = (ListView) findViewById(R.id.playlist);
  /build/tools/droiddoc/templates-sdk-dyn/assets/css/
default.css     [all...]
  /build/tools/droiddoc/templates-sdk/assets/css/
default.css     [all...]

Completed in 1061 milliseconds