Home
last modified time | relevance | path

Searched refs:filename (Results 201 – 225 of 756) sorted by relevance

12345678910>>...31

/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DFileCacheReader.php115 && (false !== $filename = $class->getFileName())
116 && filemtime($path) < filemtime($filename)) {
150 && (false !== $filename = $class->getFilename())
151 && filemtime($path) < filemtime($filename)) {
185 && (false !== $filename = $class->getFilename())
186 && filemtime($path) < filemtime($filename)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DConfiguration.php148 protected $filename; variable in PHPUnit_Util_Configuration
153 * @param string $filename
155 protected function __construct($filename) argument
157 $this->filename = $filename;
158 $this->document = PHPUnit_Util_XML::loadFile($filename, false, true, true);
169 * @param string $filename
173 public static function getInstance($filename) argument
175 $realpath = realpath($filename);
181 $filename
200 return $this->filename;
[all …]
/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/twig/twig/test/Twig/Tests/
H A DFileExtensionEscapingStrategyTest.php19 public function testGuess($strategy, $filename) argument
21 $this->assertSame($strategy, FileExtensionEscapingStrategy::guess($filename));
/plugin/dropfiles/action/
H A Dajax.php143 * @param string $filename
146 protected function checkFileCallback($carry, $filename){ argument
147 $id = cleanID($filename);
150 $carry[$filename] = $error;
/plugin/revisionsdue/
H A Dsyntax.php43 $filename = $conf['datadir'].$file;
44 $last_modified = filemtime($filename);
71 $filename = $conf['datadir'].$file;
72 $body = @file_get_contents($filename);
/plugin/zip/pear/File/Archive/Reader/
H A DChangeName.php108 function select($filename, $close = true) argument
110 $name = $this->unmodifyName($filename);
205 function select($filename, $close = true) argument
207 return $this->source->select($this->unmodifyName($filename));
/plugin/git/syntax/
H A Dremotestatus.php211 function getFileContents($filename) argument
214 $handle = fopen($filename, "r");
215 $contents = fread($handle, filesize($filename));
/plugin/html2pdf/html2pdf/html2ps/demo/
H A Dtest.php22 function MyDestinationDownload($filename) { argument
23 $this->DestinationHTTP($filename);
24 $GLOBALS['PDFOutFileName'] = $filename;
/plugin/ckgedit/action/
H A Dsave.php378 $filename = $imgpaste->getConf('filename');
379 if(!$filename) return false;
380 $filename = str_replace(
393 $filename
395 $filename = strftime($filename);
396 $filename = cleanID($filename);
397 return $filename . '.' . $ext;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
H A DXMLTest.php86 $filename = $fileInfo->getFilename();
88 $actualFile = $actualFilesPath . DIRECTORY_SEPARATOR . $filename;
95 "${filename} not match"
H A DHTMLTest.php90 $filename = $fileInfo->getFilename();
92 $actualFile = $actualFilesPath . DIRECTORY_SEPARATOR . $filename;
99 "${filename} not match"
/plugin/dpicorrect/
H A Daction.php80 function get_dpi_for_jpeg($filename) argument
83 $a = fopen($filename,'r');
109 function get_dpi_for_png($filename) argument
112 $a = fopen($filename,'r');
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/doc/
H A DDocHTML.php233 function getClassDocFromFile($filename) { argument
234 if(is_string($filename) && file_exists($filename) && is_readable($filename)) {
235 $objClass = new PHPClass($filename);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSupport/
H A DMedia.php68 public $filename; variable in Google\\Service\\CloudSupport\\Media
337 public function setFilename($filename) argument
339 $this->filename = $filename;
346 return $this->filename;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTubeReporting/
H A DGdataMedia.php68 public $filename; variable in Google\\Service\\YouTubeReporting\\GdataMedia
337 public function setFilename($filename) argument
339 $this->filename = $filename;
346 return $this->filename;
/plugin/html2pdf/html2pdf/html2ps/
H A Ddestination._http.class.php3 function DestinationHTTP($filename) { argument
4 $this->Destination($filename);
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityNotAllowedFilterError.php23 …public function __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $p… argument
25 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedFunctionError.php23 …public function __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $p… argument
25 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedTagError.php23 …public function __construct($message, $tagName, $lineno = -1, $filename = null, \Exception $previo… argument
25 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedMethodError.php24 …public function __construct($message, $className, $methodName, $lineno = -1, $filename = null, \Ex… argument
26 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedPropertyError.php24 …public function __construct($message, $className, $propertyName, $lineno = -1, $filename = null, \… argument
26 parent::__construct($message, $lineno, $filename, $previous);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DUtils.php361 * @param string $filename File to open
368 public static function tryFopen($filename, $mode) argument
371 set_error_handler(function () use ($filename, $mode, &$ex) {
374 $filename,
383 $handle = fopen($filename, $mode);
387 $filename,
/plugin/latexport/implementation/
H A Ddecorator_persister.php792 $filename = $this->obtainFilename($src);
793 if (!$this->isPrintable($filename)) {
797 list($width, $height) = getimagesize($filename);
812 $this->appendCommand('includegraphics', $this->insertImage($filename),
831 * @param filename String the file name.
834 private function isPrintable($filename) { argument
835 $ext = pathinfo($filename, PATHINFO_EXTENSION);
866 private function insertImage($filename) { argument
867 $baseFilename = $this->texifyFilename(basename($filename));
868 $this->archive->insertContent(self::GRAPHICSPATH.$baseFilename, file_get_contents($filename));
/plugin/achart/
H A Daction.php37 $filename= dirname(__FILE__) . '/assets/locales/'.$conf['lang'].'.json';
38 …if( file_exists( $filename ) == true ){$localization = $conf['lang'];} else {$localization = "en";}

12345678910>>...31