Home
last modified time | relevance | path

Searched refs:cover_file (Results 1 – 25 of 34) sorted by relevance

12

/dports/devel/py-nose/nose-1.3.7/functional_tests/
H A Dtest_coverage_plugin.py36 if os.path.exists(self.cover_file):
37 os.unlink(self.cover_file)
69 if os.path.exists(self.cover_file):
70 os.unlink(self.cover_file)
94 if os.path.exists(self.cover_file):
95 os.unlink(self.cover_file)
120 if os.path.exists(self.cover_file):
121 os.unlink(self.cover_file)
146 if os.path.exists(self.cover_file):
147 os.unlink(self.cover_file)
[all …]
/dports/devel/arcanist/arcanist-b2e715f/src/unit/engine/
H A DCSharpToolsTestEngine.php152 protected function parseCoverageResult($cover_file) { argument
154 return parent::parseCoverageResult($cover_file);
156 return $this->readCoverage($cover_file);
167 private function getCachedResultsIfPossible($cover_file) { argument
172 return $this->cachedResults[(string)$cover_file];
183 private function addCachedResults($cover_file, array $results) { argument
187 $this->cachedResults[(string)$cover_file] = $results;
216 public function readCoverage($cover_file) { argument
217 $cached = $this->getCachedResultsIfPossible($cover_file);
223 $coverage_dom->loadXML(Filesystem::readFile($cover_file));
[all …]
H A DNoseTestEngine.php128 public function readCoverage($cover_file, $source_path) { argument
129 $coverage_xml = Filesystem::readFile($cover_file);
/dports/devel/arcanist-lib/arcanist-b2e715f/src/unit/engine/
H A DCSharpToolsTestEngine.php152 protected function parseCoverageResult($cover_file) { argument
154 return parent::parseCoverageResult($cover_file);
156 return $this->readCoverage($cover_file);
167 private function getCachedResultsIfPossible($cover_file) { argument
172 return $this->cachedResults[(string)$cover_file];
183 private function addCachedResults($cover_file, array $results) { argument
187 $this->cachedResults[(string)$cover_file] = $results;
216 public function readCoverage($cover_file) { argument
217 $cached = $this->getCachedResultsIfPossible($cover_file);
223 $coverage_dom->loadXML(Filesystem::readFile($cover_file));
[all …]
H A DNoseTestEngine.php128 public function readCoverage($cover_file, $source_path) { argument
129 $coverage_xml = Filesystem::readFile($cover_file);
/dports/www/mythplugin-mythweb/mythweb-31.0/classes/
H A DVideo.php20 var $cover_file; variable in Video
64 $this->cover_file = $video['coverfile'];
68 if ($this->cover_file && $this->cover_file != 'No Cover') {
71 $path = preg_replace('#/+#', '/', "$dir/$this->cover_file");
78 $this->cover_url = 'pl/coverart/'.$this->cover_file;
79 $this->cover_file = $path;
80 list($width, $height) = @getimagesize($this->cover_file);
117 …& file_exists($this->cover_url)) ? ' src="data/video_covers/'.basename($this->cover_file).'"' : '')
171 ( @filesize($this->cover_file) > 0 ? $this->cover_file : 'No Cover' ),
/dports/audio/strawberry/strawberry-1.0.0/src/device/
H A Dgpoddevice.cpp201 …std::shared_ptr<QTemporaryFile> cover_file = std::make_shared<QTemporaryFile>(temp_path + "/track-…
202 cover_file->setAutoRemove(true);
203 if (cover_file->open()) {
204 cover_file->close();
206 if (image.save(cover_file->fileName(), "JPG")) {
207 result = itdb_track_set_thumbnails(track, QFile::encodeName(cover_file->fileName()));
209 cover_files_ << cover_file;
214 qLog(Error) << "Failed to save" << cover_file->fileName() << cover_file->errorString();
218 qLog(Error) << "Failed to open" << cover_file->fileName() << cover_file->errorString();
/dports/deskutils/griffith/griffith-a593201179695efe93829d9c9a70962ef29dd109/lib/
H A Dcover.py112 cover_file = os.path.join(self.griffith_dir, "cover.pdf")
114 os.popen3("\"" + cover_file + "\"")
117 subprocess.Popen([self.pdf_reader, cover_file])
200 cover_file = os.path.join(self.griffith_dir, 'cover.pdf')
202 os.popen3("\"" + cover_file + "\"")
204 os.popen3("open -a Preview" + " " + cover_file)
207 subprocess.Popen([self.pdf_reader, cover_file])
/dports/audio/goobox/goobox-3.6.0/src/
H A Dmain.c142 GFile *cover_file; in system_notify() local
145 cover_file = g_file_new_for_path (cover_path); in system_notify()
146 cover_icon = g_file_icon_new (cover_file); in system_notify()
150 g_object_unref (cover_file); in system_notify()
H A Dgoo-player-info.c65 char *cover_file; member
349 g_free (info->priv->cover_file); in goo_player_info_finalize()
536 if (info->priv->cover_file != NULL) { in goo_player_info_set_cover()
537 g_free (info->priv->cover_file); in goo_player_info_set_cover()
538 info->priv->cover_file = NULL; in goo_player_info_set_cover()
560 info->priv->cover_file = g_strdup (cover); in goo_player_info_set_cover()
695 return info->priv->cover_file; in goo_player_info_get_cover_file()
/dports/multimedia/gpodder/gpodder-3.10.17/src/gpodder/gtkui/
H A Dservices.py104 return self.downloader.get_cover(channel.cover_file,
111 if filename.startswith(channel.cover_file):
122 if pixbuf is None and filename.startswith(channel.cover_file):
/dports/audio/strawberry/strawberry-1.0.0/src/covermanager/
H A Dalbumcoverchoicecontroller.cpp178 if (cover_file.isEmpty()) return AlbumCoverImageResult(); in LoadImageFromFile()
181 QFile file(cover_file); in LoadImageFromFile()
186 qLog(Error) << "Cover file" << cover_file << "is empty."; in LoadImageFromFile()
187 emit Error(tr("Cover file %1 is empty.").arg(cover_file)); in LoadImageFromFile()
192 result.cover_url = QUrl::fromLocalFile(cover_file); in LoadImageFromFile()
196 … qLog(Error) << "Failed to open cover file" << cover_file << "for reading:" << file.errorString(); in LoadImageFromFile()
197 …emit Error(tr("Failed to open cover file %1 for reading: %2").arg(cover_file, file.errorString())); in LoadImageFromFile()
210 if (cover_file.isEmpty()) return QUrl(); in LoadCoverFromFile()
212 if (QImage(cover_file).isNull()) return QUrl(); in LoadCoverFromFile()
217 SaveCoverEmbeddedAutomatic(*song, cover_file); in LoadCoverFromFile()
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/gui2/
H A Dtools.py81 if d.cover_file is not None:
82 recs.append(('cover', d.cover_file.name,
84 temp_files.append(d.cover_file)
216 cover_file = create_cover_file(self.db, book_id)
222 if cover_file is not None:
223 lrecs.append(('cover', cover_file.name,
225 temp_files.append(cover_file)
/dports/audio/exaile/exaile-4.1.1/plugins/mpris2/
H A Dmprisobject.py44 self.cover_file = None
81 f = self.cover_file
86 f = self.cover_file
89 self.cover_file = f = tempfile.NamedTemporaryFile(
/dports/deskutils/calibre/calibre-src-5.34.0/recipes/
H A Ddunyahalleri.recipe178 def default_cover(self, cover_file):
203 img.convert('RGB').save(cover_file, 'JPEG')
204 cover_file.flush()
H A Ddunyahalleri_haftaninozeti.recipe242 def default_cover(self, cover_file):
271 img.convert('RGB').save(cover_file, 'JPEG')
272 cover_file.flush()
H A Dreaditlater.recipe151 def default_cover(self, cover_file):
163 cover_file.write(img_data)
164 cover_file.flush()
/dports/cad/nvc/nvc-r1.5.3/src/rt/
H A Dcover.c36 typedef struct cover_file cover_file_t;
58 struct cover_file { struct
201 static cover_file_t *cover_file(const loc_t *loc) in cover_file() function
260 cover_file_t *file = cover_file(loc); in cover_report_conds()
327 cover_file_t *file = cover_file(loc); in cover_report_fn()
/dports/multimedia/quodlibet/quodlibet-4.3.0/quodlibet/util/cover/
H A Dhttp.py33 def replaced(cover_file, task, data): argument
35 ostr = cover_file.replace_finish(task)
/dports/multimedia/gpodder/gpodder-3.10.17/src/gpodder/
H A Ddbusproxy.py86 cover_file = ''
88 return (title, url, description, cover_file)
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/srv/
H A Dconvert.py130 … with tempfile.NamedTemporaryFile(prefix='', suffix='.jpg', dir=tdir, delete=False) as cover_file:
131 cover_copied = db.copy_cover_to(book_id, cover_file)
132 cover_path = cover_file.name if cover_copied else None
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/rebar/src/
H A Drebar_cover_utils.erl122 cover_file(M, TargetDir),
274 cover_file(Module, TargetDir) -> function
/dports/devel/rebar/rebar-2.6.4/src/
H A Drebar_cover_utils.erl120 cover_file(M, TargetDir),
272 cover_file(Module, TargetDir) -> function
/dports/math/gap/gap-4.11.0/pkg/anupq-3.2.1/src/
H A Dstandard.c159 FILE *cover_file; /* store complete p-cover of group */ in start_pga_run() local
182 cover_file = OpenFile("ISOM_cover_file", "r"); in start_pga_run()
183 restore_pcp(cover_file, pcp); in start_pga_run()
184 CloseFile(cover_file); in start_pga_run()
/dports/www/mythplugin-mythweb/mythweb-31.0/modules/video/
H A Dedit.php61 $Video->cover_file = $filename;

12