Home
last modified time | relevance | path

Searched refs:filename (Results 276 – 300 of 756) sorted by path

1...<<11121314151617181920>>...31

/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/TextUI/
H A DCommand.php909 * @param string $filename
911 protected function handleBootstrap($filename) argument
914 PHPUnit_Util_Fileloader::checkAndLoad($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 …]
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/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/sebastian/code-unit-reverse-lookup/src/
H A DWizard.php34 * @param string $filename
39 public function lookup($filename, $lineNumber) argument
41 if (!isset($this->lookupTable[$filename][$lineNumber])) {
45 if (isset($this->lookupTable[$filename][$lineNumber])) {
46 return $this->lookupTable[$filename][$lineNumber];
48 return $filename . ':' . $lineNumber;
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php99 foreach ($filenames as $filename) {
100 if (!$this->isReadable($filename)) {
101 … throw new RuntimeException(sprintf('File or directory "%s" is not readable.', $filename));
104 foreach ($this->getFiles($filename) as $file) {
/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 …]
H A DYaml.php45 * @param string $filename The path to the YAML file to be parsed
52 public static function parseFile(string $filename, int $flags = 0) argument
56 return $yaml->parseFile($filename, $flags);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Command/
H A DLintCommandTest.php32 $filename = $this->createFile('foo: bar');
34 …$ret = $tester->execute(['filename' => $filename], ['verbosity' => OutputInterface::VERBOSITY_VERB…
58 $filename = $this->createFile($incorrectContent);
60 $ret = $tester->execute(['filename' => $filename], ['decorated' => false]);
99 $filename = $this->createFile('');
100 unlink($filename);
102 $ret = $tester->execute(['filename' => $filename], ['decorated' => false]);
110 $filename = tempnam(sys_get_temp_dir().'/framework-yml-lint-test', 'sf-');
111 file_put_contents($filename, $content);
113 $this->files[] = $filename;
[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
H A Drecipes.rst316 If you iterate over a set of files, you can pass the filename to the
317 ``tokenize()`` method to get the filename in the exception message::
H A Dtemplates.rst320 filename. You can access templates in subdirectories with a slash:
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c551 zval *filename; in TWIG_RUNTIME_ERROR() local
570 MAKE_STD_ZVAL(filename); in TWIG_RUNTIME_ERROR()
580 call_user_function(EG(function_table), &template, filename_func, filename, 0, 0 TSRMLS_CC); in TWIG_RUNTIME_ERROR()
584 constructor_args[2] = filename; in TWIG_RUNTIME_ERROR()
590 zval_ptr_dtor(&filename); in TWIG_RUNTIME_ERROR()
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DCompiler.php31 protected $filename; variable in Twig\\Compiler
46 return $this->filename;
89 $this->filename = $node->getTemplateName();
H A DLexer.php34 protected $filename; variable in Twig\\Lexer
103 $this->filename = $this->source->getName();
306 …d since version 1.21. Use "verbatim" instead in %s at line %d.', $this->filename, $this->lineno), …
/plugin/findologicxmlexport/vendor/twig/twig/src/Error/
H A DError.php43 protected $filename; variable in Twig\\Error\\Error
81 $this->filename = $name;
113 return $this->filename;
127 $this->filename = $name;
143 return $this->filename;
157 $this->filename = $name;
192 … return $this->filename ? new Source($this->sourceCode, $this->filename, $this->sourcePath) : null;
204 $this->filename = $source->getName();
249 if ($this->filename) {
250 …if (\is_string($this->filename) || (\is_object($this->filename) && method_exists($this->filename, …
[all …]
/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 DSecurityNotAllowedMethodError.php24 …public function __construct($message, $className, $methodName, $lineno = -1, $filename = null, \Ex… argument
26 parent::__construct($message, $lineno, $filename, $previous);

1...<<11121314151617181920>>...31