/external/chromium_org/chrome/common/media_galleries/ |
iphoto_library.h | 32 typedef std::map<std::string /*album name*/, Album> Albums; 36 Library(const Albums& albums, const std::set<Photo>& all_photos); 39 Albums albums; member in struct:iphoto::parser::Library
|
iphoto_library.cc | 28 Library::Library(const Albums& albums, 30 : albums(albums),
|
itunes_library.h | 29 typedef std::map<std::string /*album name*/, Album> Albums; 30 typedef std::map<std::string /*artist name*/, Albums> Library;
|
picasa_test_util.cc | 98 "albums=uid3,uid5\n" 100 "albums=uid5\n"; 108 "albums=uid3\n";
|
/external/chromium_org/chrome/utility/media_galleries/ |
picasa_albums_indexer.h | 18 // the albums passed in through |album_uids|. 21 // To build the contents of all the albums, we read in all the INI files 24 // The INI albums also contain ".album*" sections describing the albums that 36 // albums=e66fb059001aabcc69b262b7009fad90,18cb2df48aaa98e1c276b45cfcd81c95 42 // albums=e66fb059001aabcc69b262b7009fad90 44 // albums=18cb2df48aaa98e1c276b45cfcd81c95
|
picasa_album_table_reader_unittest.cc | 64 const std::vector<AlbumInfo>& albums = reader.albums(); local 67 ASSERT_EQ(1u, albums.size()); 70 EXPECT_EQ(test_album_name, albums[0].name); 75 base::TimeDelta time_delta = albums[0].timestamp - folders[0].timestamp;
|
picasa_albums_indexer_unittest.cc | 20 "albums=e66fb059001aabcc69b262b7009fad90,18cb2df48aaa98e1c276b45cfcd81c95\n" 26 "albums=e66fb059001aabcc69b262b7009fad90\n" 28 "albums=18cb2df48aaa98e1c276b45cfcd81c95\n"; 79 "albums=e66fb059001aabcc69b262b7009fad90\n"; 94 "albums=e66fb059001aabcc69b262b7009fad90\n" 96 "albums=18cb2df48aaa98e1c276b45cfcd81c95\n"; 145 // Should still parse normal albums correctly.
|
iphoto_library_parser_unittest.cc | 18 " <key>List of Albums</key>" \ 125 void CompareAlbums(const parser::Albums& a, const parser::Albums& b) { 128 parser::Albums::const_iterator a_it; 129 parser::Albums::const_iterator b_it; 139 CompareAlbums(a.albums, b.albums); 170 expected_library_.albums[album].insert(id); 218 TEST_F(IPhotoLibraryParserTest, Albums) {
|
picasa_album_table_reader.h | 23 const std::vector<AlbumInfo>& albums() const;
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_AlbumsTest.java | 28 import android.provider.MediaStore.Audio.Albums; 50 Albums.getContentUri(MediaStoreAudioTestHelper.INTERNAL_VOLUME_NAME), null, null, 54 Albums.getContentUri(MediaStoreAudioTestHelper.EXTERNAL_VOLUME_NAME), null, null, 60 assertNull(mContentResolver.query(Albums.getContentUri(volume), null, null, null, null)); 72 // do not support direct insert operation of the albums 73 Uri audioAlbumsUri = isInternal? Albums.INTERNAL_CONTENT_URI : Albums.EXTERNAL_CONTENT_URI; 86 String selection = Albums.ALBUM +"=?"; 94 long id = c.getLong(c.getColumnIndex(Albums._ID)); 96 assertEquals(Audio1.ALBUM, c.getString(c.getColumnIndex(Albums.ALBUM))) [all...] |
MediaStore_Audio_Artists_AlbumsTest.java | 26 import android.provider.MediaStore.Audio.Artists.Albums; 43 Uri contentUri = MediaStore.Audio.Artists.Albums.getContentUri( 48 contentUri = MediaStore.Audio.Artists.Albums.getContentUri( 55 assertNull(mContentResolver.query(MediaStore.Audio.Artists.Albums.getContentUri(volume, 1), 77 Uri artistsAlbumsUri = MediaStore.Audio.Artists.Albums.getContentUri(isInternal ? 80 // do not support insert operation of the albums 94 assertEquals(Audio1.ALBUM, c.getString(c.getColumnIndex(Albums.ALBUM))); 95 assertNull(c.getString(c.getColumnIndex(Albums.ALBUM_ART))); 96 assertNotNull(c.getString(c.getColumnIndex(Albums.ALBUM_KEY))); 97 assertEquals(Audio1.ARTIST, c.getString(c.getColumnIndex(Albums.ARTIST))) [all...] |
/packages/apps/Gallery2/src/com/android/photos/data/ |
PhotoDatabase.java | 23 import com.android.photos.data.PhotoProvider.Albums; 48 // Photos.ALBUM_ID is a foreign key to Albums._ID 57 { Albums._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" }, 58 // Albums.ACCOUNT_ID is a foreign key to Accounts._ID 59 { Albums.ACCOUNT_ID, "INTEGER NOT NULL" }, 60 // Albums.PARENT_ID is a foreign key to Albums._ID 61 { Albums.PARENT_ID, "INTEGER" }, 62 { Albums.ALBUM_TYPE, "TEXT" }, 63 { Albums.VISIBILITY, "INTEGER NOT NULL" } [all...] |
/external/libmtp/examples/ |
albums.c | 2 * \file albums.c 3 * Example program that lists the albums on the device. 47 fprintf(stdout, "mtp-albums: No Devices have been found\n"); 50 fprintf(stderr, "mtp-albums: There has been an error connecting. Exit\n"); 53 fprintf(stderr, "mtp-albums: Memory Allocation Error. Exit\n"); 59 fprintf(stderr, "mtp-albums: Unknown error, please report " 65 fprintf(stdout, "mtp-albums: Successfully connected\n"); 78 printf("Retrieving Albums on Device with name: (NULL)\n"); 80 printf("Retrieving Albums on Device with name: %s\n", friendlyname);
|
Makefile.am | 3 format albumart albums newplaylist emptyfolders \ 20 albums_SOURCES=albums.c util.c util.h common.h
|
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
picasa_file_util.h | 20 // - /albums/ 21 // - /albums/albumname 2013-08-21/ 22 // - /albums/albumname 2013-08-21/imagename.jpg 23 // - /albums/duplicatename 2013-08-21/ 24 // - /albums/duplicatename 2013-08-21 (1)/
|
iphoto_file_util.cc | 53 const char kIPhotoAlbumsDir[] = "Albums"; 169 // The 'Albums' directory. 174 std::vector<std::string> albums = local 176 if (ContainsElement(albums, components[1])) 215 // Root directory. Child is the /Albums dir. 225 // Albums dir contains all album names. 226 std::vector<std::string> albums = local 228 for (std::vector<std::string>::const_iterator it = albums.begin(); 229 it != albums.end(); it++) { 235 std::vector<std::string> albums local [all...] |
iphoto_data_provider.cc | 67 for (parser::Albums::const_iterator album_it = library.albums.begin(); 68 album_it != library.albums.end(); album_it++) { 90 for (parser::Albums::const_iterator album_it = library.albums.begin(); 91 album_it != library.albums.end(); album_it++) {
|
safe_picasa_albums_indexer.cc | 31 SafePicasaAlbumsIndexer::SafePicasaAlbumsIndexer(const AlbumMap& albums, 38 for (AlbumMap::const_iterator it = albums.begin(); it != albums.end(); ++it)
|
safe_picasa_albums_indexer.h | 27 // SafePicasaAlbumsIndexer indexes the contents of Picasa Albums by parsing the 38 SafePicasaAlbumsIndexer(const AlbumMap& albums, const AlbumMap& folders);
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/js/ |
upload_page.js | 219 * Callback from picasa client after getting albums list. 220 * @param {Array.<picasa.Album>} albums Albums list. 222 getAlbumsCallback_: function(albums) { 224 this.client_.albums.push( 226 albums = this.client_.albums; 228 for (var album, i = 0; album = albums[i]; i++) { 231 this.albumSelect_.selectedIndex = albums.length - 1; 232 albums[albums.length - 1].title = '' [all...] |
/external/chromium/chrome/browser/resources/picasaweb_uploader/ |
manifest.json | 5 "description": "Upload photos to Picasa Web Albums",
|
/external/markdown/markdown/extensions/ |
imagelinks.py | 54 albums = [] 111 if not album in albums : 112 albums.append(album)
|
/packages/screensavers/PhotoTable/res/values/ |
strings.xml | 41 <!-- Click to select all albums in the album selection activity. [CHAR LIMIT=15] --> 47 <!-- Text shown instead of a list of albums when there are no albums with photos. [CHAR LIMIT=50] -->
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoSourcePlexor.java | 43 log(TAG, "finding albums"); 47 log(TAG, "found " + foundAlbums.size() + " network albums"); 50 log(TAG, "found " + foundAlbums.size() + " user albums");
|
/external/chromium_org/tools/perf/page_sets/ |
plus_alt_posts_photos.json | 10 "why": "Alternate between clicking posts and albums",
|