Home
last modified time | relevance | path

Searched refs:song_list (Results 1 – 25 of 29) sorted by relevance

12

/dports/audio/clementine-player/Clementine-1.4.0rc1/tests/
H A Dcueparser_test.cpp59 ASSERT_EQ(1, song_list.size()); in TEST_F()
71 validate_songs(song_list); in TEST_F()
81 ASSERT_EQ(2, song_list.size()); in TEST_F()
102 validate_songs(song_list); in TEST_F()
112 ASSERT_EQ(2, song_list.size()); in TEST_F()
135 validate_songs(song_list); in TEST_F()
145 ASSERT_EQ(2, song_list.size()); in TEST_F()
170 validate_songs(song_list); in TEST_F()
234 validate_songs(song_list); in TEST_F()
286 validate_songs(song_list); in TEST_F()
[all …]
/dports/devel/z88dk/z88dk/libsrc/_DEVELOPMENT/EXAMPLES/zx/demo_tritone/
H A Dtritone.c40 struct songs song_list[] = { variable
71 for (i = 0; i != sizeof(song_list) / sizeof(struct songs); ++i) in main()
72 printf(" %u. %s\n", i+1, song_list[i].name); in main()
83 if ((i > 0) && (i < (sizeof(song_list) / sizeof(struct songs) + 1))) in main()
87 printf("\n Decompressing \"%s\"\n", song_list[--i].name); in main()
88 dzx7_standard(song_list[i].start, WORKSPACE); in main()
94 printf(" Now playing \"%s\"\n", song_list[i].name); in main()
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/ui/
H A Dtrackselectiondialog.cpp74 ui_->song_list->clear(); in Init()
89 ui_->song_list->setVisible(multiple); in Init()
93 ui_->song_list->setCurrentRow(0); in Init()
112 if (ui_->song_list->currentIndex().row() == row) { in FetchTagProgress()
138 if (ui_->song_list->currentIndex().row() == row) { in FetchTagFinished()
144 const int row = ui_->song_list->currentRow(); in UpdateStack()
282 int row = (ui_->song_list->currentRow() + 1) % ui_->song_list->count(); in NextSong()
283 ui_->song_list->setCurrentRow(row); in NextSong()
287 int row = (ui_->song_list->currentRow() - 1 + ui_->song_list->count()) % in PreviousSong()
288 ui_->song_list->count(); in PreviousSong()
[all …]
H A Dedittagdialog.cpp255 ui_->song_list->clear(); in SetSongs()
271 ui_->song_list->setEnabled(false); in SetSongsFinished()
288 ui_->song_list->setCurrentRow(0); in SetSongsFinished()
289 ui_->song_list->selectAll(); in SetSongsFinished()
296 ui_->song_list->setVisible(visible); in SetSongListVisibility()
671 if (ui_->song_list->count() == 0) { in NextSong()
675 int row = (ui_->song_list->currentRow() + 1) % ui_->song_list->count(); in NextSong()
676 ui_->song_list->setCurrentRow(row); in NextSong()
680 if (ui_->song_list->count() == 0) { in PreviousSong()
684 int row = (ui_->song_list->currentRow() - 1 + ui_->song_list->count()) % in PreviousSong()
[all …]
/dports/audio/strawberry/strawberry-1.0.0/src/dialogs/
H A Dtrackselectiondialog.cpp101 ui_->song_list->clear(); in Init()
116 ui_->song_list->setVisible(multiple); in Init()
120 ui_->song_list->setCurrentRow(0); in Init()
140 if (ui_->song_list->currentIndex().row() == row) { in FetchTagProgress()
167 if (ui_->song_list->currentIndex().row() == row) { in FetchTagFinished()
175 const int row = ui_->song_list->currentRow(); in UpdateStack()
246 const int song_row = ui_->song_list->currentRow(); in ResultSelected()
329 int row = (ui_->song_list->currentRow() + 1) % ui_->song_list->count(); in NextSong()
330 ui_->song_list->setCurrentRow(row); in NextSong()
334 int row = (ui_->song_list->currentRow() - 1 + ui_->song_list->count()) % ui_->song_list->count(); in PreviousSong()
[all …]
H A Dedittagdialog.cpp409 ui_->song_list->clear(); in SetSongs()
432 ui_->song_list->setEnabled(false); in SetSongsFinished()
449 ui_->song_list->setCurrentRow(0); in SetSongsFinished()
450 ui_->song_list->selectAll(); in SetSongsFinished()
459 ui_->song_list->setVisible(visible); in SetSongListVisibility()
1056 if (ui_->song_list->count() == 0) { in NextSong()
1060 int row = (ui_->song_list->currentRow() + 1) % ui_->song_list->count(); in NextSong()
1061 ui_->song_list->setCurrentRow(row); in NextSong()
1067 if (ui_->song_list->count() == 0) { in PreviousSong()
1071 int row = (ui_->song_list->currentRow() - 1 + ui_->song_list->count()) % ui_->song_list->count(); in PreviousSong()
[all …]
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/networkremote/
H A Dsongsender.cpp330 SongList song_list = playlist->GetAllSongs(); in SendPlaylist() local
334 for (Song s : song_list) { in SendPlaylist()
340 for (Song s : song_list) { in SendPlaylist()
343 DownloadItem item(s, song_list.indexOf(s) + 1, count); in SendPlaylist()
350 SongList song_list; in SendUrls() local
360 song_list.append(song); in SendUrls()
365 for (Song s : song_list) { in SendUrls()
366 DownloadItem item(s, song_list.indexOf(s) + 1, song_list.count()); in SendUrls()
H A Doutgoingdatacreator.cpp439 SongList song_list = playlist->GetAllSongs(); in SendPlaylistSongs() local
440 QListIterator<Song> it(song_list); in SendPlaylistSongs()
/dports/audio/mp3c/mp3c-0.31/src/
H A Dcddb_put.c293 int cddb_create_entry(char *filename, song_typ *song_list) in cddb_create_entry() argument
306 if((!song_list) || (!filename)) { in cddb_create_entry()
312 curr = song_list; in cddb_create_entry()
330 curr = song_list; in cddb_create_entry()
445 curr = song_list; in cddb_create_entry()
458 curr = song_list; in cddb_create_entry()
483 if(! song_list) { in cddb_save_cddb_entry()
545 i = cddb_create_entry(filename, song_list); in cddb_save_cddb_entry()
847 int cddb_submit_cddb_entry(song_typ *song_list) in cddb_submit_cddb_entry() argument
858 if(! song_list) { in cddb_submit_cddb_entry()
[all …]
H A Dkeys.c94 extern int cddb_save_cddb_entry(song_typ *song_list, char *cddb_path);
95 extern int cddb_submit_cddb_entry(song_typ *song_list);
/dports/audio/p5-Net-DAAP-Client/Net-DAAP-Client-0.42/lib/Net/DAAP/
H A DClient.pm513 my $song_list = $self->{SONGS};
520 if (exists $song_list->{$id}) {
521 my $song = $song_list->{$id};
580 my $song_list = $self->{SONGS};
585 my $song = $song_list->{$song_id};
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/library/
H A Dlibrarywatcher.cpp379 SongList song_list = in ScanSubdirectory() local
382 if (song_list.isEmpty()) { in ScanSubdirectory()
390 for (Song song : song_list) { in ScanSubdirectory()
504 SongList song_list; in ScanNewFile() local
510 if (cues_processed->contains(matching_cue)) return song_list; in ScanNewFile()
522 song_list << cue_song; in ScanNewFile()
527 if (!song_list.isEmpty()) { in ScanNewFile()
537 song_list << song; in ScanNewFile()
541 return song_list; in ScanNewFile()
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/playlist/
H A Dplaylistbackend.cpp248 SongList song_list; in RestoreCueData() local
256 song_list = in RestoreCueData()
258 state->cached_cues_[cue_path] = song_list; in RestoreCueData()
260 song_list = state->cached_cues_[cue_path]; in RestoreCueData()
264 for (const Song& from_list : song_list) { in RestoreCueData()
/dports/games/abuse_sdl/abuse-0.8/data/lisp/
H A Dsfx.lsp262 (setq song_list '("music/abuse01.hmi" "music/abuse02.hmi"))
263 (setq current_song song_list)
272 (setq current_song song_list))
/dports/audio/strawberry/strawberry-1.0.0/src/playlist/
H A Dplaylistbackend.cpp293 SongList song_list; in RestoreCueData() local
301 song_list = cue_parser.Load(&cue_file, cue_path, QDir(cue_path.section('/', 0, -2))); in RestoreCueData()
303 state->cached_cues_[cue_path] = song_list; in RestoreCueData()
306 song_list = state->cached_cues_[cue_path]; in RestoreCueData()
310 for (const Song &from_list : song_list) { in RestoreCueData()
/dports/audio/mp3splt-gtk/mp3splt-gtk-0.9.2/src/
H A Dgstreamer_control.c367 GList *song_list = g_list_append(NULL, strdup(fname)); in gstreamer_start() local
368 gstreamer_add_files(song_list, ui); in gstreamer_start()
369 g_list_foreach(song_list, (GFunc)g_free, NULL); in gstreamer_start()
370 g_list_free(song_list); in gstreamer_start()
H A Dplayer_window.c466 GList *song_list = NULL; in connect_with_song() local
467 song_list = g_list_append(song_list, strdup(fname)); in connect_with_song()
473 player_start_play_with_songs(song_list, ui); in connect_with_song()
477 player_add_play_files(song_list, ui); in connect_with_song()
488 player_start_add_files(song_list, ui); in connect_with_song()
498 player_add_files(song_list, ui); in connect_with_song()
519 g_list_foreach(song_list, (GFunc)g_free, NULL); in connect_with_song()
520 g_list_free(song_list); in connect_with_song()
3541 GList *song_list = NULL; in file_chooser_ok_event() local
3542 song_list = g_list_append(song_list, g_strdup(fname)); in file_chooser_ok_event()
[all …]
/dports/audio/ncmpcpp/ncmpcpp-0.9.2/src/
H A DMakefile.am50 song_list.cpp \
122 song_list.h \
H A DMakefile.in134 song.$(OBJEXT) song_list.$(OBJEXT) status.$(OBJEXT) \
169 ./$(DEPDIR)/song_list.Po ./$(DEPDIR)/status.Po \
447 song_list.cpp \
520 song_list.h \
716 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/song_list.Po@am__quote@ # am--include-marker
938 -rm -f ./$(DEPDIR)/song_list.Po
1035 -rm -f ./$(DEPDIR)/song_list.Po
/dports/games/tomenet/tomenet-4.6.0/src/client/
H A Dsnd-sdl.c144 } song_list; typedef
157 static song_list songs[MUSIC_MAX];
185 song_list *mus = &songs[i]; in close_audio()
534 char *song_list; in sound_sdl_init() local
554 song_list = strchr(search + 1, ' '); in sound_sdl_init()
558 if (!song_list) continue; in sound_sdl_init()
577 song_list++; in sound_sdl_init()
578 if (!song_list[0]) continue; in sound_sdl_init()
581 cur_token = song_list; in sound_sdl_init()
/dports/audio/hydrogen/hydrogen-1.0.1/src/core/include/hydrogen/helpers/
H A Dfilesystem.h182 static QStringList song_list( );
/dports/audio/rioutil/rioutil-1.5.0/include/
H A Drio.h51 struct song_list { struct
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/core/
H A Dsongloader.cpp253 SongList song_list = cue_parser_->Load(&cue, matching_cue, in LoadLocalAsync() local
255 for (Song song : song_list) { in LoadLocalAsync()
/dports/audio/hydrogen/hydrogen-1.0.1/src/core/src/helpers/
H A Dfilesystem.cpp623 QStringList Filesystem::song_list( ) in song_list() function in H2Core::Filesystem
631 foreach ( const QString& str, song_list() ) { in song_list_cleared()
/dports/audio/gmpc/gmpc-11.8.16/src/vala/
H A Dgmpc-plugin.vala145 public abstract int song_list (Gtk.Widget tree, Gtk.Menu menu);

12