Home
last modified time | relevance | path

Searched refs:AlbumInfo (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
Dtunes_db_test.py53 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))
Dtunes_db.py332 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,
Dmodel.py117 class AlbumInfo(Info): class