Home
last modified time | relevance | path

Searched refs:filename (Results 501 – 525 of 756) sorted by last modified time

1...<<2122232425262728293031

/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/src/
H A DIterator.php79 $filename = $current->getFilename();
92 $this->acceptPrefix($filename) &&
93 $this->acceptSuffix($filename);
113 * @param string $filename
117 protected function acceptPrefix($filename) argument
123 * @param string $filename
127 protected function acceptSuffix($filename) argument
133 * @param string $filename
139 protected function acceptSubString($filename, array $subStrings, $type) argument
148 if (($type == self::PREFIX && strpos($filename, $string) === 0) ||
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/_fixture/
H A Dsource3.php12 foreach ($included_files as $filename) {
13 echo "$filename\n";
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DPhptTestCase.php19 private $filename; variable in PHPUnit_Extensions_PhptTestCase
55 * @param string $filename
60 public function __construct($filename, $phpUtil = null) argument
62 if (!is_string($filename)) {
66 if (!is_file($filename)) {
70 $filename
75 $this->filename = $filename;
253 return $this->filename;
299 foreach (file($this->filename) as $line) {
397 "'" . dirname($this->filename) . "'",
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
H A DFunctions.php672 * @param string $filename
675 function assertFileExists($filename, $message = '') argument
704 * @param string $filename
707 function assertFileNotExists($filename, $message = '') argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php296 * @param string $filename
300 public function addTestFile($filename) argument
302 if (!is_string($filename)) {
306 if (file_exists($filename) && substr($filename, -5) == '.phpt') {
308 new PHPUnit_Extensions_PhptTestCase($filename)
316 $filename = PHPUnit_Util_Fileloader::checkAndLoad($filename);
335 $shortname = basename($filename, '.php');
342 if ($class->getFileName() == $filename) {
392 foreach ($filenames as $filename) {
393 $this->addTestFile((string) $filename);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/
H A DStandardTestSuiteLoader.php37 $filename = PHPUnit_Util_Fileloader::checkAndLoad($suiteClassFile);
50 $class->getFileName() == $filename) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/PHP/Template/
H A DTestCaseMethod.tpl.dist30 require_once '{filename}';
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Extensions/
H A DPhptTestCaseTest.php45 protected $filename; variable in Extensions_PhptTestCaseTest
51 $this->filename = sys_get_temp_dir() . '/phpunit.phpt';
52 touch($this->filename);
56 $this->testCase = new PHPUnit_Extensions_PhptTestCase($this->filename, $this->phpUtil);
61 @unlink($this->filename);
63 $this->filename = null;
74 file_put_contents($this->filename, $content);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DGenerator.php1310 * @param string $filename
1316 private function getTemplate($filename) argument
1318 if (!isset(self::$templates[$filename])) {
1319 self::$templates[$filename] = new Text_Template($filename);
1322 return self::$templates[$filename];
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DExampleFinder.php37 $filename = $example->getFilePath();
39 $file = $this->getExampleFileContents($filename);
41 return "** File not found : {$filename} **";
100 * @param string $filename
104 private function getExampleFileContents($filename) argument
109 $exampleFileFromConfig = $this->constructExamplePath($directory, $filename);
117 if (is_readable($this->getExamplePathFromSource($filename))) {
118 $normalizedPath = $this->getExamplePathFromSource($filename);
120 $normalizedPath = $this->getExamplePathFromExampleDirectory($filename);
121 } elseif (is_readable($filename)) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DFileloader.php20 * @param string $filename
26 public static function checkAndLoad($filename) argument
28 $includePathFilename = stream_resolve_include_path($filename);
32 sprintf('Cannot open file "%s".' . "\n", $filename)
44 * @param string $filename
48 public static function load($filename) argument
52 include_once $filename;
66 return $filename;
H A DTest.php1041 $filename = $reflector->getFileName();
1043 if (!isset($result[$filename])) {
1044 $result[$filename] = [];
1047 $result[$filename] = array_merge(
1048 $result[$filename],
1053 foreach ($result as $filename => $lineNumbers) {
1054 $result[$filename] = array_keys(array_flip($lineNumbers));
H A DXML.php32 * @param string $filename
55 @chdir(dirname($filename));
65 if ('' !== $filename) {
67 $document->documentURI = $filename;
92 if ($filename !== '') {
96 $filename,
114 * @param string $filename
121 public static function loadFile($filename, $isHtml = false, $xinclude = false, $strict = false) argument
124 $contents = file_get_contents($filename);
131 $filename
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DParser.php29 private $filename; variable in Symfony\\Component\\Yaml\\Parser
43 * @param string $filename The path to the YAML file to be parsed
50 public function parseFile(string $filename, int $flags = 0) argument
52 if (!is_file($filename)) {
53 throw new ParseException(sprintf('File "%s" does not exist.', $filename));
56 if (!is_readable($filename)) {
57 throw new ParseException(sprintf('File "%s" cannot be read.', $filename));
60 $this->filename = $filename;
63 return $this->parse(file_get_contents($filename), $flags);
65 $this->filename = null;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG197 * deprecated the "filename" escaping strategy (use "name" instead)
303 * fixed escaping strategy detection based on filename
357 * added a 'filename' autoescaping strategy, which dynamically chooses the
412 * fixed error filename/line when an error occurs in an included file
575 * added a way to dynamically change the auto-escaping strategy according to the template "filename"
845 * fixed filename not being added to syntax error messages
1010 * fixed bug when the filename of a template contains */
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dapi.rst138 As of Twig 1.17, the ``filename`` escaping strategy (renamed to ``name`` as
140 the template filename extension (this strategy does not incur any overhead at
H A Ddeprecated.rst131 * As of Twig 1.27, the ``filename`` attribute on ``\Twig\Node\ModuleNode`` is
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/
H A DFilter.php45 * @param string $filename
84 * @param string $filename
88 $filename = realpath($filename);
96 * @param string $filename
100 public function isFile($filename) argument
102 if ($filename == '-' ||
113 return file_exists($filename);
119 * @param string $filename
123 public function isFiltered($filename) argument
125 if (!$this->isFile($filename)) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A DChangeLog-5.7.md19 … later (after the class from above), and the name of that another class does not match its filename
/plugin/bookmarkfile/
H A Dsyntax.php64 $filename = $conf['mediadir'].'/'.str_replace(':', '/', $matches[1]);
75 $bookmarkfile = fopen($filename, "r-");
89 $bookmarks = $this->parseFirefoxFile($filename);
191 private function parseFirefoxFile($filename) argument
193 $json = file_get_contents($filename);
/plugin/timetrack/
H A Dadmin.php43 $filename = 'timetrack'.time() . '.csv';
44 $fp = fopen($this->tmp.$filename, 'w');
53 sendFile($this->tmp . $filename, 'text/comma-separated-values', true, 0);
/plugin/pdb/
H A Dsyntax.php55 $filename = $this->imgCache->GetMediaPath($pdbid);
56 if ($this->rcsb->DownloadImage($pdbid,$filename)!==false)
71 $filename = $this->imgCache->GetMediaPath($pdbid);
72 if ($this->rcsb->DownloadImage($pdbid,$filename)!==false)
/plugin/pubchem/
H A Dsyntax.php114 $filename = $this->imgCache->GetMediaPath($id);
115 if(!is_readable($filename)){
117 io_download($url,$filename);
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A DSafeFN.class.php42 …* @param string $filename a utf8 string, should only include printable characters - not …
47 public static function encode($filename) { argument
48 return self::unicode_to_safe(utf8_to_unicode($filename));
71 * @param string $filename a 'safe' encoded ASCII string,
76 public static function decode($filename) { argument
77 return unicode_to_utf8(self::safe_to_unicode(strtolower($filename)));
H A Dcommands.php428 function UnlinkFile($resourceType, $currentFolder, $sCommand, $filename ) { argument
436 $path = $sServerDir.$filename;
442 if(preg_match('/^(.*?)\/(.*?)$/',$filename,$matches)) {
448 $filename = $matches[2];
457 $moveFile = $sMoveDir . '/' . dwiki_encodeFN($filename );
466 $unlinkFile = $sServerDir . dwiki_encodeFN($filename );

1...<<2122232425262728293031