Home
last modified time | relevance | path

Searched refs:SongList (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/dports/audio/strawberry/strawberry-1.0.0/src/tidal/
H A Dtidalfavoriterequest.h55 void ArtistsAdded(SongList);
56 void AlbumsAdded(SongList);
57 void SongsAdded(SongList);
58 void ArtistsRemoved(SongList);
59 void AlbumsRemoved(SongList);
60 void SongsRemoved(SongList);
67 void AddArtists(const SongList &songs);
68 void AddAlbums(const SongList &songs);
71 void RemoveArtists(const SongList &songs);
72 void RemoveAlbums(const SongList &songs);
[all …]
H A Dtidalfavoriterequest.cpp91 void TidalFavoriteRequest::AddArtists(const SongList &songs) {
95 void TidalFavoriteRequest::AddAlbums(const SongList &songs) {
103 void TidalFavoriteRequest::AddFavorites(const FavoriteType type, const SongList &songs) {
162 …eRequest::AddFavoritesReply(QNetworkReply *reply, const FavoriteType type, const SongList &songs) {
195 void TidalFavoriteRequest::RemoveArtists(const SongList &songs) {
199 void TidalFavoriteRequest::RemoveAlbums(const SongList &songs) {
203 void TidalFavoriteRequest::RemoveSongs(const SongList &songs) {
209 SongList songs_list = songs.values();
211 RemoveFavoritesRequest(FavoriteType_Songs, song.song_id(), SongList() << song);
216 void TidalFavoriteRequest::RemoveFavorites(const FavoriteType type, const SongList &songs) {
[all …]
/dports/audio/strawberry/strawberry-1.0.0/src/qobuz/
H A Dqobuzfavoriterequest.h52 void ArtistsAdded(SongList);
53 void AlbumsAdded(SongList);
54 void SongsAdded(SongList);
55 void ArtistsRemoved(SongList);
56 void AlbumsRemoved(SongList);
57 void SongsRemoved(SongList);
64 void AddArtists(const SongList &songs);
65 void AddAlbums(const SongList &songs);
67 void RemoveArtists(const SongList &songs);
68 void RemoveAlbums(const SongList &songs);
[all …]
H A Dqobuzfavoriterequest.cpp88 void QobuzFavoriteRequest::AddArtists(const SongList &songs) {
92 void QobuzFavoriteRequest::AddAlbums(const SongList &songs) {
100 void QobuzFavoriteRequest::AddFavorites(const FavoriteType type, const SongList &songs) {
130 …:AddFavoritesRequest(const FavoriteType type, const QStringList &ids_list, const SongList &songs) {
147 …eRequest::AddFavoritesReply(QNetworkReply *reply, const FavoriteType type, const SongList &songs) {
179 void QobuzFavoriteRequest::RemoveArtists(const SongList &songs) {
183 void QobuzFavoriteRequest::RemoveAlbums(const SongList &songs) {
187 void QobuzFavoriteRequest::RemoveSongs(const SongList &songs) {
195 void QobuzFavoriteRequest::RemoveFavorites(const FavoriteType type, const SongList &songs) {
225 …moveFavoritesRequest(const FavoriteType type, const QStringList &ids_list, const SongList &songs) {
[all …]
/dports/audio/strawberry/strawberry-1.0.0/src/collection/
H A Dcollectionbackend.h179 SongList GetSongsById(const QList<int> &ids);
180 SongList GetSongsById(const QStringList &ids);
203 SongList SmartPlaylistsGetAllSongs();
208 void AddOrUpdateSongsAsync(const SongList &songs);
220 void AddOrUpdateSongs(const SongList &songs);
222 void UpdateMTimesOnly(const SongList &songs);
223 void DeleteSongs(const SongList &songs);
249 void SongsDiscovered(SongList);
250 void SongsDeleted(SongList);
251 void SongsStatisticsChanged(SongList);
[all …]
H A Dcollectionwatcher.h60 void RescanTracksAsync(const SongList &songs);
69 void NewOrUpdatedSongs(SongList);
70 void SongsMTimeUpdated(SongList);
71 void SongsDeleted(SongList);
116 SongList deleted_songs;
117 SongList readded_songs;
118 SongList new_songs;
119 SongList touched_songs;
171 static bool FindSongsByPath(const SongList &songs, const QString &path, SongList *out);
173 …FindSongsByFingerprint(const QString &file, const SongList &songs, const QString &fingerprint, Son…
[all …]
H A Dcollectionbackend.cpp401 SongList ret; in FindSongsInDirectory()
424 SongList ret; in SongsWithMissingFingerprint()
965 SongList songs; in GetArtistSongs()
984 SongList songs; in GetAlbumSongs()
1002 SongList songs; in GetSongsByAlbum()
1118 SongList ret; in GetSongsById()
1172 SongList songs; in GetSongsByUrl()
1230 SongList ret; in GetSongsBySongId()
1254 SongList songs; in GetSongsByFingerprint()
1285 SongList ret; in GetCompilationSongs()
[all …]
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/library/
H A Dlibrarybackend.h87 virtual SongList GetSongsByAlbum(
92 virtual SongList GetCompilationSongs(
149 SongList FindSongsInDirectory(int id);
180 SongList GetSongsById(const QList<int>& ids);
185 SongList GetSongsByUrl(const QUrl& url);
194 SongList GetAllSongs();
207 void AddOrUpdateSongs(const SongList& songs);
208 void UpdateMTimesOnly(const SongList& songs);
209 void DeleteSongs(const SongList& songs);
230 void SongsDiscovered(const SongList& songs);
[all …]
H A Dlibrary.cpp145 connect(backend_, SIGNAL(SongsRatingChanged(SongList)), in Init()
146 SLOT(SongsRatingChanged(SongList))); in Init()
147 connect(backend_, SIGNAL(SongsStatisticsChanged(SongList)), in Init()
148 SLOT(SongsStatisticsChanged(SongList))); in Init()
150 SLOT(AddOrUpdateSongs(SongList))); in Init()
152 SLOT(UpdateMTimesOnly(SongList))); in Init()
154 SLOT(MarkSongsUnavailable(SongList))); in Init()
156 SLOT(MarkSongsUnavailable(SongList, bool))); in Init()
192 const SongList all_songs = backend_->GetAllSongs(); in WriteAllSongsStatisticsToFiles()
229 void Library::SongsRatingChanged(const SongList& songs) { in SongsRatingChanged()
[all …]
H A Dlibrarywatcher.h61 void NewOrUpdatedSongs(const SongList& songs);
62 void SongsMTimeUpdated(const SongList& songs);
63 void SongsDeleted(const SongList& songs);
64 void SongsReadded(const SongList& songs, bool unavailable = false);
93 SongList FindSongsInSubdirectory(const QString& path);
106 SongList deleted_songs;
107 SongList readded_songs;
108 SongList new_songs;
109 SongList touched_songs;
134 SongList cached_songs_;
[all …]
H A Dlibrarybackend.cpp284 SongList ret; in FindSongsInDirectory()
298 SongList updated_songs; in SongPathChanged()
381 SongList added_songs; in AddOrUpdateSongs()
382 SongList deleted_songs; in AddOrUpdateSongs()
601 SongList ret; in ExecLibraryQuery()
682 SongList ret; in GetSongsById()
709 SongList songlist; in GetSongsByUrl()
736 SongList ret; in GetCompilationSongs()
788 SongList added_songs; in UpdateCompilations()
1007 SongList added_songs; in UpdateManualAlbumArt()
[all …]
/dports/audio/clementine-player/Clementine-1.4.0rc1/tests/
H A Dlibrarybackend_test.cpp109 backend_->AddOrUpdateSongs(SongList() << s); in TEST_F()
113 backend_->AddOrUpdateSongs(SongList() << s); in TEST_F()
117 backend_->AddOrUpdateSongs(SongList() << s); in TEST_F()
121 backend_->AddOrUpdateSongs(SongList() << s); in TEST_F()
125 backend_->AddOrUpdateSongs(SongList() << s); in TEST_F()
160 SongList list = *(reinterpret_cast<SongList*>(added_spy[0][0].data())); in AddDummySong()
264 SongList songs_added = *(reinterpret_cast<SongList*>(added_spy[0][0].data())); in TEST_F()
265 SongList songs_deleted = *(reinterpret_cast<SongList*>(deleted_spy[0][0].data())); in TEST_F()
282 backend_->DeleteSongs(SongList() << new_song); in TEST_F()
286 SongList songs_deleted = *(reinterpret_cast<SongList*>(deleted_spy[0][0].data())); in TEST_F()
[all …]
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/devices/
H A Dcddadevice.cpp31 connect(&cdda_song_loader_, SIGNAL(SongsLoaded(SongList)), in CddaDevice()
32 this, SLOT(SongsLoaded(SongList))); in CddaDevice()
33 connect(&cdda_song_loader_, SIGNAL(SongsDurationLoaded(SongList)), in CddaDevice()
34 this, SLOT(SongsLoaded(SongList))); in CddaDevice()
35 connect(&cdda_song_loader_, SIGNAL(SongsMetadataLoaded(SongList)), in CddaDevice()
36 this, SLOT(SongsLoaded(SongList))); in CddaDevice()
37 connect(this, SIGNAL(SongsDiscovered(SongList)), in CddaDevice()
38 model_, SLOT(SongsDiscovered(SongList))); in CddaDevice()
55 void CddaDevice::SongsLoaded(const SongList& songs) { in SongsLoaded()
H A Dfilesystemdevice.cpp53 connect(watcher_, SIGNAL(NewOrUpdatedSongs(SongList)), backend_, in FilesystemDevice()
54 SLOT(AddOrUpdateSongs(SongList))); in FilesystemDevice()
55 connect(watcher_, SIGNAL(SongsMTimeUpdated(SongList)), backend_, in FilesystemDevice()
56 SLOT(UpdateMTimesOnly(SongList))); in FilesystemDevice()
57 connect(watcher_, SIGNAL(SongsDeleted(SongList)), backend_, in FilesystemDevice()
58 SLOT(DeleteSongs(SongList))); in FilesystemDevice()
/dports/audio/strawberry/strawberry-1.0.0/tests/src/
H A Dcollectionbackend_test.cpp179 SongList list = *(reinterpret_cast<SongList*>(added_spy[0][0].data())); in AddDummySong()
310 SongList songs_added = *(reinterpret_cast<SongList*>(added_spy[0][0].data())); in TEST_F()
311 SongList songs_deleted = *(reinterpret_cast<SongList*>(deleted_spy[0][0].data())); in TEST_F()
335 SongList songs_deleted = *(reinterpret_cast<SongList*>(deleted_spy[0][0].data())); in TEST_F()
368 SongList songs_deleted = *(reinterpret_cast<SongList*>(deleted_spy[0][0].data())); in TEST_F()
403 SongList songs; in TEST_F()
431 SongList new_songs = spy[0][0].value<SongList>(); in TEST_F()
515 SongList new_songs = spy[0][0].value<SongList>(); in TEST_F()
585 SongList deleted_songs = spy2[0][0].value<SongList>(); in TEST_F()
633 SongList deleted_songs = spy1[0][0].value<SongList>(); in TEST_F()
[all …]
H A Dmock_collectionbackend.h40 MOCK_METHOD1(FindSongsInDirectory, SongList(int));
47 MOCK_METHOD3(GetSongs, SongList(const QString&, const QString&, const QueryOptions&));
49 MOCK_METHOD2(GetCompilationSongs, SongList(const QString&, const QueryOptions&));
60 MOCK_METHOD1(GetSongsByUrl, SongList(const QUrl&));
68 MOCK_METHOD2(GetSongsByAlbum, SongList(const QString&, const QueryOptions&));
/dports/audio/pianod2/pianod2-329/src/songs/
H A Dmusictypes.cpp123 SongList MusicThingie::songs () { in songs()
124 return SongList {}; in songs()
355 SongList PianodSong::songs () { in songs()
357 SongList songs; in songs()
388 SongList::SongList (const SongList &list) : in SongList() function in SongList
397 SongList &SongList::operator =(const SongList &list) { in operator =()
417 void SongList::shuffle (void) { in shuffle()
425 void SongList::mixedMerge (const SongList &adds) { in mixedMerge()
426 SongList originals; in mixedMerge()
444 void SongList::join (SongList &from) { in join()
[all …]
H A Dmusictypes.h34 class SongList; variable
233 virtual SongList songs ();
360 ThingieList (const SongList &songs);
480 virtual SongList songs () override;
497 SongList () = default;
498 SongList (const SongList &SongList);
499 SongList (SongList &&) = default;
500 SongList &operator =(const SongList &list);
501 SongList &operator =(SongList &&) = default;
505 void join (SongList &from);
[all …]
H A Dmusiclibrary.h66 virtual SongList getAllSongs (void) = 0;
67 virtual SongList getMatchingSongs (const Filter &criteria) = 0;
71 virtual SongList getSongsForPlaylist (PianodPlaylist *) = 0;
73 SongList getRandomSongs (PianodPlaylist *playlist,
117 virtual SongList songs () override;
118 virtual SongList songs (const Filter &filter) override;
133 virtual SongList songs () override;
159 virtual SongList songs () override;
203 virtual SongList songs () override;
331 SongList getAllSongs (void) override;
[all …]
/dports/audio/pianod2/pianod2-329/src/mediaunits/pandora/
H A Dpandora.h60 void add (const SongList &songs) = delete;
67 void unabridge (const SongList &songs);
71 void update (const SongList &songs);
76SongList getPlayableSongs (std::function<bool (PlayableSong *)> matcher, const Filter &filter) con…
77 SongList getPlayableSongs (Station *station, const Filter &filter) const;
78 SongList getPlayableSongs (Artist *artist) const;
79 SongList getPlayableSongs (Album *album) const;
134 …virtual SongList getRandomSongs (PianodPlaylist *playlist, const UserList &, Media::SelectionMetho…
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/ui/
H A Dorganisedialog.h61 bool SetSongs(const SongList& songs);
86 SongList LoadSongsBlocking(const QStringList& filenames);
90 const SongList& songs, const OrganiseFormat& format);
98 QFuture<SongList> songs_future_;
99 SongList songs_;
/dports/audio/ncmpcpp/ncmpcpp-0.9.2/src/
H A Ddisplay.h35 void SongsInColumns(NC::Menu<MPD::Song> &menu, const SongList &list);
37 void Songs(NC::Menu<MPD::Song> &menu, const SongList &list, const Format::AST<char> &ast);
41 void SEItems(NC::Menu<SEItem> &menu, const SongList &list);
43 void Items(NC::Menu<MPD::Item> &menu, const SongList &list);
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/core/
H A Ddeletefiles.h41 void Start(const SongList& songs);
46 void Finished(const SongList& songs_with_errors);
57 SongList songs_;
64 SongList songs_with_errors_;
/dports/audio/strawberry/strawberry-1.0.0/src/playlistparsers/
H A Dplaylistparser.cpp156 SongList PlaylistParser::LoadFromFile(const QString &filename) const { in LoadFromFile()
164 return SongList(); in LoadFromFile()
169 if (!file.open(QIODevice::ReadOnly)) return SongList(); in LoadFromFile()
171 SongList ret = parser->Load(&file, filename, info.absolutePath()); in LoadFromFile()
178 SongList PlaylistParser::LoadFromDevice(QIODevice *device, const QString &path_hint, const QDir &di… in LoadFromDevice()
183 return SongList(); in LoadFromDevice()
190 void PlaylistParser::Save(const SongList &songs, const QString &filename, const Playlist::Path path… in Save()
/dports/audio/strawberry/strawberry-1.0.0/src/organize/
H A Dorganizedialog.h66 bool SetSongs(const SongList &songs);
72 …static Organize::NewSongInfoList ComputeNewSongsFilenames(const SongList &songs, const OrganizeFor…
86 static SongList LoadSongsBlocking(const QStringList &filenames);
118 QFuture<SongList> songs_future_;
119 SongList songs_;

12345678910>>...12