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

1 2

  /external/libmtp/examples/
albums.c 26 static void dump_albuminfo(LIBMTP_album_t *album)
28 printf("Album ID: %d\n",album->album_id);
29 printf(" Parent ID: %d\n",album->parent_id);
30 printf(" Name: %s\n",album->name);
31 printf(" Artist: %s\n", album->artist);
32 printf(" Composer: %s\n", album->composer);
33 printf(" Genre: %s\n", album->genre);
34 printf(" Tracks: %d\n\n",album->no_tracks);
73 LIBMTP_album_t *album_list, *album, *tmp local
    [all...]
albumart.c 3 * Example program to send album art.
88 printf("You need to supply an album name.\n");
132 LIBMTP_album_t *album = LIBMTP_new_album_t(); local
133 album->name = albumname;
134 album->no_tracks = idcount;
135 album->tracks = ids;
136 album->parent_id = 0;
137 album->storage_id = 0;
138 int ret = LIBMTP_Create_New_Album(device,album);
140 ret = LIBMTP_Send_Representative_Sample(device,album->album_id, albumart)
    [all...]
sendtr.c 58 fprintf(stderr, "-t <title> -a <artist> -A <Album artist> -w <writer or composer>\n");
59 fprintf(stderr, " -l <album> -c <codec> -g <genre> -n <track number> -y <year>\n");
94 LIBMTP_album_t *album; local
98 /* Look for the album */
99 album = LIBMTP_Get_Album_List(device);
100 while(album != NULL) {
101 if ((album->name != NULL &&
102 album->artist != NULL &&
103 !strcmp(album->name, albuminfo->name) &&
104 !strcmp(album->artist, albuminfo->artist)) |
167 char artist[80], albumartist[80], title[80], genre[80], album[80], composer[80]; local
    [all...]
tracks.c 37 if (track->album != NULL)
38 printf(" Album: %s\n", track->album);
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
upload_page.js 64 this.albumDiv_ = document.querySelector('.album-div');
67 this.albumSelect_ = document.getElementById('album-select');
70 this.albumTitleInput_ = document.getElementById('album-title-input');
73 this.albumLocationInput_ = document.getElementById('album-location-input');
77 document.getElementById('album-description-textarea');
167 * Shows the "choose album" page.
170 this.title_.textContent = 'Choose an Album';
220 * @param {Array.<picasa.Album>} albums Albums list.
223 // Adding fake album with id=null.
225 new picasa.Album(null, 'Create New Album', '', '', ''))
    [all...]
picasa_client.js 63 * Album constructor.
65 * Album object stores information about picasa album.
67 picasa.Album = function(id, title, location, description, link) {
105 * @type {Array.<picasa.Album>}
142 * @type {Array.<picasa.Album>}
290 * @param {Function(Array.<picasa.Album>)} callback Callback.
310 * Returns album object created from entry.
311 * @param {*} entry The feed entry corresponding to album.
312 * @return {picasa.Album} The album object
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbumSet.java 116 ClusterAlbum album; local
118 album = (ClusterAlbum) dataManager.peekMediaObject(childPath);
119 if (album == null) {
120 album = new ClusterAlbum(childPath, dataManager, this);
123 album.setMediaItems(clustering.getCluster(i));
124 album.setName(childName);
125 album.setCoverMediaItem(clustering.getClusterCover(i));
126 mAlbums.add(album);
LocalAlbumSet.java 128 MediaSet album = getLocalAlbum(dataManager, local
130 albums.add(album);
175 for (MediaSet album : mAlbums) {
176 album.reload();
  /external/markdown/markdown/extensions/
imagelinks.py 90 new_block += ALBUM_LINK % (album_urls[0], "complete album")
94 "album %d" % (i + 1) )
105 album, photo = line.split("/")
106 photo_url = url.get_photo(album, photo,
111 if not album in albums :
112 albums.append(album)
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicRetriever.java 81 int albumColumn = cur.getColumnIndex(MediaStore.Audio.Media.ALBUM);
116 String album; field in class:MusicRetriever.Item
119 public Item(long id, String artist, String title, String album, long duration) {
123 this.album = album;
140 return album;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetSlidingWindow.java 75 public MediaSet album; field in class:AlbumSetSlidingWindow.AlbumSetEntry
247 MediaSet album = mSource.getMediaSet(slotIndex); local
251 entry.album = album;
252 entry.setDataVersion = getDataVersion(album);
253 entry.cacheFlag = identifyCacheFlag(album);
254 entry.cacheStatus = identifyCacheStatus(album);
255 entry.setPath = (album == null) ? null : album.getPath();
257 String title = (album == null) ? "" : Utils.ensureNotNull(album.getName())
    [all...]
AlbumSetSlotRenderer.java 143 if (entry.album != null && entry.album.isCameraRoll()) {
  /packages/apps/Mms/src/com/android/mms/model/
AudioModel.java 80 String album = c.getString(c.getColumnIndexOrThrow("album")); local
81 if (!TextUtils.isEmpty(album)) {
82 mExtras.put("album", album);
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 952 /** Represents a link to a Picasa photo or album. */
954 /** Pattern for an album or photo URL. */
961 private String album; field in class:AbstractMessageParser.Photo
964 public Photo(String user, String album, String photo, String text) {
967 this.album = album;
972 public String getAlbum() { return album; }
978 /** Returns a Photo object if the given url is to a photo or album. */
1003 "?category=album&alt=rss";
1006 /** Returns the URL for an album. *
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
FlipperDreamSettings.java 72 R.layout.album,
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 102 mAlbumArtWorker = new Worker("album art worker");
111 mAlbum = (ImageView) findViewById(R.id.album);
269 String album; local
275 album = mService.getAlbumName();
285 if (MediaStore.UNKNOWN_STRING.equals(album) &&
315 (album != null) && !MediaStore.UNKNOWN_STRING.equals(album);
322 title = album;
324 query = artist + " " + album;
326 query = album;
    [all...]
QueryBrowserActivity.java 111 // This is an album, show the songs on it
114 i.putExtra("album", uri.getLastPathSegment());
121 i.setDataAndType(Uri.EMPTY, "vnd.android.cursor.dir/album");
133 String album = intent.getStringExtra(MediaStore.EXTRA_MEDIA_ALBUM); local
139 if (album != null) {
140 mFilterString = album;
288 intent.setDataAndType(Uri.EMPTY, "vnd.android.cursor.dir/album");
291 } else if ("album".equals(selectedType)) {
295 intent.putExtra("album", Long.valueOf(id).toString());
323 BaseColumns._ID, // this will be the artist, album or track I
    [all...]
ArtistAlbumBrowserActivity.java 270 intent.putExtra("album", mCurrentAlbumId);
272 String album = c.getString(c.getColumnIndex(MediaStore.Audio.Albums.ALBUM)); local
273 if (album == null || album.equals(MediaStore.UNKNOWN_STRING)) {
274 // unknown album, so we should include the artist ID to limit the songs to songs only by that artist
335 Log.d("Artist/Album", "no group");
356 Log.d("Artist/Album", "no child");
363 mCurrentAlbumName = c.getString(c.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM));
701 String name = cursor.getString(cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM));
    [all...]
MediaPlaybackService.java 130 MediaStore.Audio.Media.ALBUM,
774 * "album" - String: the name of the album
1195 String album = getAlbumName(); local
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java 616 } else if (name.equalsIgnoreCase("album") || name.startsWith("album;")) {
784 map.put(Video.Media.ALBUM, (mAlbum != null && mAlbum.length() > 0
797 map.put(Audio.Media.ALBUM, (mAlbum != null && mAlbum.length() > 0) ?
817 // use album artist if artist is missing
828 String album = values.getAsString(Audio.Media.ALBUM);
829 if (MediaStore.UNKNOWN_STRING.equals(album)) {
830 album = values.getAsString(MediaStore.MediaColumns.DATA);
832 int lastSlash = album.lastIndexOf('/')
    [all...]
  /external/libmtp/src/
libmtp.c 364 register_filetype("Abstract Album file", LIBMTP_FILETYPE_ALBUM, PTP_OFC_MTP_AbstractAudioAlbum);
549 register_property("Album Name", LIBMTP_PROPERTY_AlbumName, PTP_OPC_AlbumName);
550 register_property("Album Artist", LIBMTP_PROPERTY_AlbumArtist, PTP_OPC_AlbumArtist);
    [all...]
libmtp.h 597 /** Default Album folder */
633 char *album; /**< Album name for track */ member in struct:LIBMTP_track_struct
665 * MTP Album structure
670 uint32_t storage_id; /**< ID of storage holding this album */
671 char *name; /**< Name of album */
672 char *artist; /**< Name of album artist */
674 char *genre; /**< Genre of album */
675 uint32_t *tracks; /**< The tracks in this album */
676 uint32_t no_tracks; /**< The number of tracks in this album */
    [all...]
libmtp.h.in 595 /** Default Album folder */
631 char *album; /**< Album name for track */
663 * MTP Album structure
668 uint32_t storage_id; /**< ID of storage holding this album */
669 char *name; /**< Name of album */
670 char *artist; /**< Name of album artist */
672 char *genre; /**< Genre of album */
673 uint32_t *tracks; /**< The tracks in this album */
674 uint32_t no_tracks; /**< The number of tracks in this album */
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumSetPage.java 207 private static boolean albumShouldOpenInFilmstrip(MediaSet album) {
208 int itemCount = album.getMediaItemCount();
209 ArrayList<MediaItem> list = (itemCount == 1) ? album.getMediaItem(0, 1) : null;
210 // open in film strip only if there's one item in the album and the item exists
404 // the empty album toast, otherwise show it within this
420 // Hide the empty album toast if we are in the root instance of
421 // AlbumSetPage and the album is no longer empty (for instance,
717 Log.w(TAG, "failed to load album set");
  /external/libvorbis/doc/
05-comment.tex 107 \item[ALBUM]
111 The track number of this piece if part of a specific larger collection or album

Completed in 693 milliseconds

1 2