Home
last modified time | relevance | path

Searched refs:dirs (Results 1 – 25 of 83) sorted by relevance

1234

/plugin/asciidocjs/node_modules/resolve/test/
Dnode-modules-paths.js8 var verifyDirs = function verifyDirs(t, start, dirs, moduleDirectories, paths) { argument
19 for (var i = 0; i < dirs.length; ++i) {
20 var parsed = parse(dirs[i]);
24 uniqueDirs[dirs[i]] = true;
29 t.equal(keys(uniqueDirs).length, dirs.length, 'all dirs provided were unique');
41 var dirs = nodeModulesPaths(start);
43 verifyDirs(t, start, dirs);
50 var dirs = nodeModulesPaths(start, {});
52 verifyDirs(t, start, dirs);
60 var dirs = nodeModulesPaths(start, { paths: paths });
[all …]
Dmock_sync.js11 var dirs = {};
12 dirs[path.resolve('/foo/bar')] = true;
21 return !!dirs[path.resolve(dir)];
60 var dirs = {};
61 dirs[path.resolve('/foo')] = true;
62 dirs[path.resolve('/foo/node_modules')] = true;
71 return !!dirs[path.resolve(dir)];
95 var dirs = {};
96 dirs[path.resolve('/foo/bar')] = true;
97 dirs[path.resolve('/foo/bar/symlinked')] = true;
[all …]
Dmock.js11 var dirs = {};
12 dirs[path.resolve('/foo/bar')] = true;
21 cb(null, !!dirs[path.resolve(dir)]);
61 var dirs = {};
62 dirs[path.resolve('/foo/bar')] = true;
71 cb(null, !!dirs[path.resolve(dir)]);
115 var dirs = {};
116 dirs[path.resolve('/foo')] = true;
117 dirs[path.resolve('/foo/node_modules')] = true;
126 cb(null, !!dirs[path.resolve(dir)]);
[all …]
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
DFileLocator.php12 private $dirs; variable in Metadata\\Driver\\FileLocator
15 * @param string[] $dirs
17 public function __construct(array $dirs) argument
19 $this->dirs = $dirs;
24 foreach ($this->dirs as $prefix => $dir) {
45 foreach ($this->dirs as $prefix => $dir) {
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
DAnnotationRegistry.php75 * @param string|array|null $dirs
81 public static function registerAutoloadNamespace(string $namespace, $dirs = null) : void argument
83 self::$autoloadNamespaces[$namespace] = $dirs;
144 foreach (self::$autoloadNamespaces AS $namespace => $dirs) {
148 if ($dirs === null) {
154 foreach((array) $dirs AS $dir) {
/plugin/captcha/_test/
DHelperTest.php105 $dirs = glob("$path*");
106 $this->assertEquals(array(), $dirs);
113 $dirs = glob("$path*");
114 $this->assertEquals(array($today), $dirs);
123 $dirs = glob("$path*");
132 $dirs
139 $dirs = glob("$path*");
140 $this->assertEquals(array($today), $dirs);
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
Ddemo.dirscan.php141 …$dirs = array_merge(glob($root.'/*', GLOB_ONLYDIR), glob($root.'/*/*', GLOB_ONLYDIR), glob($root.'…
144 if (count($dirs) < 1) {
145 $dirs = array($root);
147 return $dirs;
210 $dirs = self::getDirs($dir);
211 if ($dirs !== null) {
212 foreach ($dirs as $d) {
/plugin/archiveupload/
Daction.php216 $dirs = array();
228 array_push($dirs, $dir.'/'.$fn_new);
275 natsort($dirs);
276 $dirs = array_reverse($dirs);
277 foreach($dirs as $dir) {
283 $dirs = array_reverse($tmp_dirs);
284 foreach($dirs as $dir) {
/plugin/jplayer/vendor/symfony/process/
DExecutableFinder.php55 $dirs = [];
59 $dirs[] = $path;
67 $dirs = array_merge(
79 foreach ($dirs as $dir) {
DPhpExecutableFinder.php69 $dirs = [\PHP_BINDIR];
71 $dirs[] = 'C:\xampp\php\\';
74 return $this->executableFinder->find('php', false, $dirs);
/plugin/combo/vendor/symfony/process/
H A DExecutableFinder.php53 $dirs = [];
57 $dirs[] = $path;
65 $dirs = array_merge(
77 foreach ($dirs as $dir) {
H A DPhpExecutableFinder.php81 $dirs = [\PHP_BINDIR];
83 $dirs[] = 'C:\xampp\php\\';
86 return $this->executableFinder->find('php', false, $dirs);
/plugin/asciidocjs/node_modules/resolve/lib/
Dsync.js66 var dirs = nodeModulesPaths(start, opts, x);
67 for (var i = 0; i < dirs.length; i++) {
68 dirs[i] = path.join(dirs[i], x);
70 return dirs;
196 var dirs = packageIterator ? packageIterator(x, start, thunk, opts) : thunk();
198 for (var i = 0; i < dirs.length; i++) {
199 var dir = dirs[i];
Dasync.js69 var dirs = nodeModulesPaths(start, opts, x);
70 for (var i = 0; i < dirs.length; i++) {
71 dirs[i] = path.join(dirs[i], x);
73 return dirs;
298 function processDirs(cb, dirs) { argument
299 if (dirs.length === 0) return cb(null, undefined);
300 var dir = dirs[0];
306 if (!isdir) return processDirs(cb, dirs.slice(1));
319 processDirs(cb, dirs.slice(1));
/plugin/pdftools/
Dfunctions.php5 $dirs = array();
13 $dirs[] = $entry;
18 return $dirs;
Dsyntax.php40 $dirs = array();
48 $dirs[] = $entry;
53 return $dirs;
/plugin/captcha/
DFileCookie.php62 $dirs = glob("$path/*", GLOB_ONLYDIR);
63 if (!$dirs) return;
66 foreach ($dirs as $dir) {
DIpCounter.php120 $dirs = glob("$path/*", GLOB_ONLYDIR);
121 if (!$dirs) return;
124 foreach ($dirs as $dir) {
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Util/
DFilesystem.php40 $dirs = glob(dirname($pattern).DIRECTORY_SEPARATOR.'*', GLOB_ONLYDIR|GLOB_NOSORT);
41 if ($dirs) {
42 foreach ($dirs as $dir) {
/plugin/dlcount/
Dadmin.php50 $dirs = explode(DIRECTORY_SEPARATOR, $mask);
51 $dirmask = array_pop($dirs);
52 $dirs = glob(implode(DIRECTORY_SEPARATOR, $dirs) . '/*', GLOB_ONLYDIR);
53 if ($dirs === false) return $result;
54 foreach ($dirs as $dir) {
/plugin/deletehistory/
Dhelper.php12 protected $dirs = []; variable in helper_plugin_deletehistory
17 $this->dirs = [
28 foreach ($this->dirs as $dir => $attic) {
/plugin/pglist/
Dsyntax.php72 'dirs' => 0,
96 if(preg_match('/\bdirs\b/i',$params)) $conf['dirs'] = 1;
133 if($data['dirs']) {
/plugin/htmlokay/
Ddirectory_scan-3.php108 $dirs = explode('#', $namespace);
109 foreach($dirs as $dir)
111 array_pop($dirs);
112 $new_dir = implode('#', $dirs);
/plugin/repo/
Dsyntax.php231 $dirs = explode('/', $path);
232 $n = count($dirs);
234 $base .= hsc($dirs[$i]).'/';
236 hsc($dirs[$i]).'/</a>';
239 $renderer->doc .= hsc($dirs[$n-1]);
/plugin/autoincludeindex/
DremoveBox.php6 $dirs = scandir($tdir);
7 foreach($dirs as $file)

1234