HomeSort by relevance Sort by last modified time
    Searched full:albuminfo (Results 1 - 4 of 4) sorted by null

  /external/libmtp/examples/
sendtr.c 92 static int add_track_to_album(LIBMTP_album_t *albuminfo, LIBMTP_track_t *trackmeta)
103 !strcmp(album->name, albuminfo->name) &&
104 !strcmp(album->artist, albuminfo->artist)) ||
107 !strcmp(album->name, albuminfo->name) &&
108 !strcmp(album->composer, albuminfo->composer))) {
145 albuminfo->tracks = trackid;
146 albuminfo->no_tracks = 1;
147 albuminfo->storage_id = trackmeta->storage_id;
149 ret = LIBMTP_Create_New_Album(device, albuminfo);
150 /* albuminfo will be destroyed later by caller *
173 LIBMTP_album_t *albuminfo; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
tunes_db_test.py 53 self.get_it_together = model.AlbumInfo(name='Get It Together',
59 self.thunder_lightening_strike = model.AlbumInfo(
66 self.proof_of_youth = model.AlbumInfo(name='Proof of Youth',
73 self.help = model.AlbumInfo(name='Help',
79 self.yellow_submarine = model.AlbumInfo(name='Yellow Submarine',
159 self.assertEquals(None, model.AlbumInfo.get(self.go_team.key()))
161 model.AlbumInfo.gql('WHERE artist = :1',
250 blueberry = model.AlbumInfo.get(response.album_id)
268 proof_of_age = model.AlbumInfo.get(self.proof_of_youth.key())
288 self.assertEquals(None, model.AlbumInfo.get(proof_of_youth_key)
    [all...]
tunes_db.py 326 album_model: model.AlbumInfo instance to convert in to an Album
332 artist_id = model.AlbumInfo.artist.get_value_for_datastore(album_model)
473 album = model.AlbumInfo(name=request.name,
488 album = model.AlbumInfo.get(request.album.album_id)
502 album = model.AlbumInfo.get(request.album_id)
519 album_model = model.AlbumInfo.get(request.album_id)
520 if isinstance(album_model, model.AlbumInfo):
535 model.AlbumInfo,
model.py 117 class AlbumInfo(Info):

Completed in 2674 milliseconds