Home
last modified time | relevance | path

Searched refs:cue_path (Results 1 – 25 of 44) sorted by relevance

12

/dports/audio/strawberry/strawberry-1.0.0/data/schema/
H A Dschema-8.sql74 cue_path TEXT field
131 cue_path TEXT field
188 cue_path TEXT field
245 cue_path TEXT field
302 cue_path TEXT field
359 cue_path TEXT field
416 cue_path TEXT field
473 cue_path TEXT field
535 cue_path TEXT field
540 …ation_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path
[all …]
H A Dschema-11.sql74 cue_path TEXT field
145 cue_path TEXT field
149 …tion_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path)
150 …ation_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path
161 …tion_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path)
162 …ation_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path
231 cue_path TEXT
235 …tion_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path)
236 …ation_effective, art_automatic, art_manual, effective_albumartist, effective_originalyear, cue_path
H A Dschema.sql76 cue_path TEXT DEFAULT '',
138 cue_path TEXT DEFAULT '',
200 cue_path TEXT DEFAULT '',
262 cue_path TEXT DEFAULT '',
324 cue_path TEXT DEFAULT '',
386 cue_path TEXT DEFAULT '',
448 cue_path TEXT DEFAULT '',
510 cue_path TEXT DEFAULT '',
592 cue_path TEXT DEFAULT '',
H A Dschema-4.sql50 cue_path TEXT field
103 cue_path TEXT field
156 cue_path TEXT field
H A Dschema-12.sql54 cue_path TEXT
111 cue_path TEXT
168 cue_path TEXT
H A Dschema-7.sql54 cue_path TEXT field
111 cue_path TEXT field
168 cue_path TEXT field
H A Dschema-13.sql62 cue_path TEXT, field
121 cue_path TEXT, field
180 cue_path TEXT, field
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/playlist/
H A Dplaylistbackend.cpp241 QString cue_path = song.cue_path(); in RestoreCueData() local
243 if (!QFile::exists(cue_path)) { in RestoreCueData()
252 if (!state->cached_cues_.contains(cue_path)) { in RestoreCueData()
253 QFile cue(cue_path); in RestoreCueData()
257 cue_parser.Load(&cue, cue_path, QDir(cue_path.section('/', 0, -2))); in RestoreCueData()
258 state->cached_cues_[cue_path] = song_list; in RestoreCueData()
260 song_list = state->cached_cues_[cue_path]; in RestoreCueData()
/dports/games/libretro-opera/opera-libretro-5781f68/
H A Dcuefile.c18 char cue_path[8192]; in cue_get_file_for_image() local
35 strcpy(cue_path, cue_path_base); in cue_get_file_for_image()
36 strcat(cue_path, exts[i]); in cue_get_file_for_image()
38 cue_file = filestream_open(cue_path, RETRO_VFS_FILE_ACCESS_READ, 0); in cue_get_file_for_image()
/dports/audio/strawberry/strawberry-1.0.0/src/playlist/
H A Dplaylistbackend.cpp286 QString cue_path = song.cue_path(); in RestoreCueData() local
288 if (!QFile::exists(cue_path)) { in RestoreCueData()
297 if (!state->cached_cues_.contains(cue_path)) { in RestoreCueData()
298 QFile cue_file(cue_path); in RestoreCueData()
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()
/dports/multimedia/qmmp-qt5/qmmp-1.5.2/src/plugins/Input/cue/
H A Dcuefile.cpp164 QString CueFile::getDirtyPath(const QString &cue_path, const QString &path) in getDirtyPath() argument
180 if(m_dirty && (f != cue_path) && Decoder::findByFilePath(f)) in getDirtyPath()
189 int dot = cue_path.lastIndexOf('.'); in getDirtyPath()
192 QRegularExpression r(QRegularExpression::escape(cue_path.left(dot)) + "\\.[^\\.]+$"); in getDirtyPath()
H A Dcuefile.h47 QString getDirtyPath(const QString &cue_path, const QString &path);
/dports/games/retroarch/RetroArch-1.9.7/tasks/
H A Dtask_content_disc.c126 char cue_path[PATH_MAX_LENGTH] = {0}; in task_cdrom_dump_handler() local
128 cdrom_device_fillpath(cue_path, sizeof(cue_path), state->drive_letter[0], 0, true); in task_cdrom_dump_handler()
130 state->file = filestream_open(cue_path, RETRO_VFS_FILE_ACCESS_READ, 0); in task_cdrom_dump_handler()
134 RARCH_ERR("[CDROM]: Error opening file for reading: %s\n", cue_path); in task_cdrom_dump_handler()
H A Dtask_database_cue.c491 int cue_find_track(const char *cue_path, bool first, in cue_find_track() argument
509 fill_pathname_basedir(cue_dir, cue_path, sizeof(cue_dir)); in cue_find_track()
517 if (!intfstream_open(fd, cue_path, in cue_find_track()
520 RARCH_LOG("Could not open CUE file '%s': %s\n", cue_path, in cue_find_track()
525 RARCH_LOG("Parsing CUE file '%s'...\n", cue_path); in cue_find_track()
624 const char *cue_path, char *path, uint64_t max_len) in cue_next_file() argument
631 fill_pathname_basedir(cue_dir, cue_path, sizeof(cue_dir)); in cue_next_file()
/dports/audio/clementine-player/Clementine-1.4.0rc1/tests/
H A Dcueparser_test.cpp69 ASSERT_EQ("CUEPATH", first_song.cue_path()); in TEST_F()
197 ASSERT_EQ("CUEPATH", first_song.cue_path()); in TEST_F()
215 ASSERT_EQ("CUEPATH", third_song.cue_path()); in TEST_F()
232 ASSERT_EQ("CUEPATH", fifth_song.cue_path()); in TEST_F()
/dports/multimedia/vlc/vlc-3.0.16/share/lua/playlist/
H A Dcue.lua50 function cue_path( src ) function
70 t.path = cue_path( track.file or global.file )
/dports/audio/clementine-player/Clementine-1.4.0rc1/data/schema/
H A Dschema-25.sql1 ALTER TABLE %allsongstables ADD COLUMN cue_path TEXT;
H A Dschema-26.sql3 ALTER TABLE playlist_items ADD COLUMN cue_path TEXT;
H A Dschema-30.sql37 cue_path TEXT field
H A Dschema-40.sql37 cue_path TEXT, field
H A Dschema-41.sql37 cue_path TEXT, field
H A Dschema-43.sql37 cue_path TEXT, field
H A Dschema-44.sql37 cue_path TEXT, field
H A Dschema-42.sql37 cue_path TEXT, field
H A Dschema-38.sql39 cue_path TEXT, field

12