Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 1625) sorted by relevance

12345678910>>...65

/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/src/
DFacade.php40 $files = array();
46 $files[] = $file;
52 $files[] = realpath($path);
56 $files = array_unique($files);
57 sort($files);
61 'commonPath' => $this->getCommonPath($files),
62 'files' => $files
65 return $files;
72 * @param array $files
75 protected function getCommonPath(array $files) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
DBuilder.php24 $files = $coverage->getData();
25 $commonPath = $this->reducePaths($files);
33 $this->buildDirectoryStructure($files),
103 * @param array $files
107 private function buildDirectoryStructure($files) argument
111 foreach ($files as $path => $file) {
169 * @param array $files
173 private function reducePaths(&$files) argument
175 if (empty($files)) {
180 $paths = array_keys($files);
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/
DGruntfile.js10 files: { property
15 files: { property
20 files: { property
25 files: { property
39 files: { property
47 files: { property
55 files: { property
63 files: { property
78 files: { property
86 files: { property
[all …]
/plugin/asciidocjs/node_modules/resolve/test/
Dmock_sync.js8 var files = {};
9 files[path.resolve('/foo/bar/baz.js')] = 'beep';
18 return Object.prototype.hasOwnProperty.call(files, path.resolve(file));
24 return files[path.resolve(file)];
54 var files = {};
55 files[path.resolve('/foo/node_modules/bar/baz.js')] = 'beep';
56 files[path.resolve('/foo/node_modules/bar/package.json')] = JSON.stringify({
68 return Object.prototype.hasOwnProperty.call(files, path.resolve(file));
74 return files[path.resolve(file)];
91 var files = {};
[all …]
Dmock.js8 var files = {};
9 files[path.resolve('/foo/bar/baz.js')] = 'beep';
18 cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file)));
24 cb(null, files[path.resolve(file)]);
58 var files = {};
59 files[path.resolve('/foo/bar/baz.js')] = 'beep';
68 cb(null, Object.prototype.hasOwnProperty.call(files, file));
75 cb(null, files[file]);
109 var files = {};
110 files[path.resolve('/foo/node_modules/bar/baz.js')] = 'beep';
[all …]
/plugin/epub/scripts/
Dcss2.php54 $files = array();
56 $files[DOKU_INC.'lib/styles/style.css'] = DOKU_BASE.'lib/styles/';
58 $files = array_merge($files, css_pluginstyles('screen'));
59 $files = array_merge($files, css_pluginstyles('all'));
60 if (isset($tplstyles['screen'])) $files = array_merge($files, $tplstyles['screen']);
62 if (isset($tplstyles['rtl'])) $files = array_merge($files, $tplstyles['rtl']);
65 $files[$config_cascade['userstyle']['default']] = DOKU_BASE;
68 $files = array_merge($files, $tplstyles[$mediatype]);
73 $files[$config_cascade['userstyle'][$mediatype]] = DOKU_BASE;
78 foreach($files as $file => $location){
/plugin/freechat/phpfreechat/src/
Dpfci18n.class.php133 $files = array();
134 $files = array_merge($files, glob(dirname(__FILE__)."/*.php"));
135 $files = array_merge($files, glob(dirname(__FILE__)."/commands/*.php"));
136 $files = array_merge($files, glob(dirname(__FILE__)."/containers/*.php"));
137 $files = array_merge($files, glob(dirname(__FILE__)."/proxies/*.php"));
138 $files = array_merge($files, glob(dirname(__FILE__)."/client/*.php"));
139 $files = array_merge($files, glob(dirname(__FILE__)."/../themes/default/*.php"));
141 foreach ( $files as $src_filename )
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
DFilterTest.php23 private $files = []; variable in SebastianBergmann\\CodeCoverage\\FilterTest
29 $this->files = [
80 $this->filter->addFileToWhitelist($this->files[0]);
83 [$this->files[0]],
94 $this->filter->addFileToWhitelist($this->files[0]);
95 $this->filter->removeFileFromWhitelist($this->files[0]);
112 $this->assertEquals($this->files, $whitelist);
123 $files = $facade->getFilesAsArray(
128 $this->filter->addFilesToWhitelist($files);
133 $this->assertEquals($this->files, $whitelist);
[all …]
/plugin/projects/lib/
Dproject.php67 private $files = array(); variable in Project
153 public function files() { function in Project
154 return $this->files;
158 if (!isset($this->files[$name])) return NULL;
159 return $this->files[$name];
181 if (isset($this->files[$name])) {
182 $this->files[$name]->delete($this->project_path);
183 unset($this->files[$name]);
202 if (!isset($this->files[$name]))
203 $this->files[$name] = ProjectFile::create($this, $file);
[all …]
/plugin/photogallery/
Dsyntax.php244 $files = $this->_findimages($data);
288 $files = $this->_findimages($data);
291 if(!count($files)){
300 $this->_createzipfile($files, mediaFN($zip));
313 $this->_description($files,$data,$R);
314 $this->_poster($files,$data,$R);
317 $this->_poster($files,$data,$R);
318 $this->_description($files,$data,$R);
331 $files = array();
335 $files = $this->_loadRSS($data['ns']);
[all …]
/plugin/zip/pear/File/Archive/Reader/
DCache.php44 var $files = array(); variable in File_Archive_Reader_Cache
72 if ($this->fromSource && !empty($this->files)) {
76 if ($this->pos+1 < count($this->files) && !$this->fromSource) {
78 fseek($this->tmpFile, $this->files[$this->pos]['pos'], SEEK_SET);
95 $this->files[] = array(
101 $this->pos = count($this->files)-1;
110 function getFilename() { return $this->files[$this->pos]['name']; }
114 function getStat() { return $this->files[$this->pos]['stat']; }
118 function getMime() { return $this->files[$this->pos]['mime']; }
141 if ($length > 0 && $this->pos+1 < count($this->files)) {
[all …]
/plugin/templateconfhelper/exe/
Dcss.php79 $files = array();
88 $files[$mediatype] = array();
90 $files[$mediatype][DOKU_INC.'lib/styles/'.$mediatype.'.css'] = DOKU_BASE.'lib/styles/';
93 …$files[$mediatype][DOKU_INC.'lib/scripts/jquery/jquery-ui-theme/smoothness.css'] = DOKU_BASE.'lib/…
96 $files[$mediatype] = array_merge($files[$mediatype], css_pluginstyles($mediatype));
99 $files[$mediatype] = array_merge($files[$mediatype], $tplstyles[$mediatype]);
103 $files[$mediatype][$config_cascade['userstyle'][$mediatype]] = DOKU_BASE;
111 …if (isset($tplstyles['rtl'])) $files[$mediatype] = array_merge($files[$mediatype], $tplstyles['rtl…
112 …if (isset($config_cascade['userstyle']['rtl'])) $files[$mediatype][$config_cascade['userstyle']['r…
116 $cache_files = array_merge($cache_files, array_keys($files[$mediatype]));
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DServerRequest.php81 * @param array $files A array which respect $_FILES structure
87 public static function normalizeFiles(array $files) argument
91 foreach ($files as $key => $value) {
138 * @param array $files
142 private static function normalizeNestedFileSpec(array $files = []) argument
146 foreach (array_keys($files['tmp_name']) as $key) {
148 'tmp_name' => $files['tmp_name'][$key],
149 'size' => $files['size'][$key],
150 'error' => $files['error'][$key],
151 'name' => $files['name'][$key],
[all …]
/plugin/nspages/fileHelper/
DfileHelper.php12 private $files; variable in fileHelper
19 $this->files = $this->searchFiles($data);
31 $files = array();
32 search($files, $conf['datadir'], 'search_universal', $opt, $this->data['wantedDir']);
33 return $files;
53 $files = array();
54 foreach($this->files as $item) {
58 $files[] = $item;
61 return $files;
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DServerRequest.php83 * @param array $files An array which respect $_FILES structure
87 public static function normalizeFiles(array $files): array argument
91 foreach ($files as $key => $value) {
140 private static function normalizeNestedFileSpec(array $files = []): array argument
144 foreach (array_keys($files['tmp_name']) as $key) {
146 'tmp_name' => $files['tmp_name'][$key],
147 'size' => $files['size'][$key] ?? null,
148 'error' => $files['error'][$key] ?? null,
149 'name' => $files['name'][$key] ?? null,
150 'type' => $files['type'][$key] ?? null,
/plugin/move/helper/
Dplan.php45 protected $files = array(); variable in helper_plugin_move_plan
76 $this->files = array(
121 $file = $this->files['opts'];
134 return io_saveFile($this->files['opts'], serialize($this->options));
271 foreach($this->files as $file) {
370 if(@filesize($this->files['pagelist']) > 1) {
376 if(@filesize($this->files['medialist']) > 1) {
382 if(@filesize($this->files['missing']) > 1 && @filesize($this->files['affected']) > 1) {
388 … if(@filesize($this->files['missing_media']) > 1 && @filesize($this->files['affected']) > 1) {
394 if(@filesize($this->files['namespaces']) > 1) {
[all …]
/plugin/podcast/
Dhelper.php27 $files = $this->get_source_files( $p['nr'] );
29 $p['files'] = $files;
35 $files = array( );
43 $files[$ext] = $meta[$ext]; }
46 $files[$ext] = array(
50 p_set_metadata( $page, array( 'source' => $files ), false, false );
51 return $files;
93 $files = array( );
99 $files[$ext] = array(
103 return $files;
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/GUI/
DSetupDecorator.php125 … $files = $this->_getFiles(realpath($dir), $filenamePattern, $exclude, realpath($dir . '/..'));
126 asort($files);
128 foreach ($files as $className => $aFile) {
153 $files = array();
187 $files[$className] = $filename;
191 … $files = array_merge($files, $this->_getFiles($filename, $filenamePattern, $exclude, $rootDir));
198 return $files;
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Util/
DFilesystem.php36 $files = glob($pattern, $flags);
43 …$files = array_merge($files, $this->recursiveGlob($dir.DIRECTORY_SEPARATOR.basename($pattern), $fl…
48 return $files;
64 $files = $this->recursiveGlob($pattern, $flags);
66 return array_filter($files, 'is_file');
/plugin/accscounter/lang/en/
Dmovedirection.txt2 The saving destination of this plugin's log files has been changed, to be compatible with some plug…
4 Old log files are still being stored in the old destination. Please decide how to handle these fil…
7 …r delete the files without notice__.\\ Files on the new destination will be __all overwritten__.\\…
10 * [[?do=accscounter_datatransfer&mode=move|Move the files to the new destination]]
12 * [[?do=accscounter_datatransfer&mode=delete|Don't move the files, just delete them]]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/
DFilter.php35 $files = $facade->getFilesAsArray($directory, $suffix, $prefix);
37 foreach ($files as $file) {
55 * @param array $files
57 public function addFilesToWhitelist(array $files) argument
59 foreach ($files as $file) {
74 $files = $facade->getFilesAsArray($directory, $suffix, $prefix);
76 foreach ($files as $file) {
/plugin/json/demo/
Dbenchmark.txt44 ===== Load multiple files into JSON array =====
45 Here is one long JSON file with random data: [[.1000files:file1]]. For testing purposes it should b…
50 <json path=stack1[] src=.1000files:file1 display=combined,log*></json>
51 ''%%<json path=stack1[] src=.1000files:file1 display=combined,log*></json>%%''\\
54 ==== Load 112 files ====
56 <json path=stack2[] src=.1000files:file1* display=combined,log*></json>
57 ''%%<json path=stack2[] src=.1000files:file1* display=combined,log*></json>%%''\\
60 ==== Load 1000 files ====
62 <json path=stack3[] src=.1000files:file*></json>
63 ''%%<json path=stack3[] src=.1000files:file*></json>%%''\\
[all …]
/plugin/dev/
Dcli.php207 * @param array $files A File array as created by Skeletor::getFiles()
209 protected function createFiles($files) argument
211 foreach ($files as $path => $content) {
409 * @param string[] $files
414 protected function cmdCleanSVG($files, $keep = false) argument
420 foreach ($files as $file) {
433 $files = glob('./lang/*/lang.php');
434 foreach ($files as $file) {
438 $files = glob('./lang/*/settings.php');
439 foreach ($files as $file) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/
DGoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs.php24 public $files; variable in Google\\Service\\RemoteBuildExecution\\GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs
36 public function setFiles($files) argument
38 $this->files = $files;
42 return $this->files;
/plugin/asciidocjs/node_modules/filelist/
DREADME.md3 A FileList is a lazy-evaluated list of files. When given a list
4 of glob patterns for possible files to be included in the file
5 list, instead of searching the file structures to find the files,
9 files, but only search out the actual files when then FileList
16 Add files to the list with the `include` method. You can add glob
17 patterns, individual files, or RegExp objects. When the Array
19 an actual list of files.
56 will be resolved to the full list of files, and the method will
62 property) which returns the number of actual files in the list
72 files. This method is invoked automatically when one of the array

12345678910>>...65