Home
last modified time | relevance | path

Searched refs:inGlobStar (Results 1 – 2 of 2) sorted by relevance

/plugin/asciidocjs/node_modules/glob/
Dsync.js74 GlobSync.prototype._process = function (pattern, index, inGlobStar) { argument
130 this._processGlobStar(prefix, read, abs, remain, index, inGlobStar)
132 this._processReaddir(prefix, read, abs, remain, index, inGlobStar)
136 GlobSync.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar) { argument
137 var entries = this._readdir(abs, inGlobStar)
207 this._process(newPattern.concat(remain), index, inGlobStar)
272 GlobSync.prototype._readdir = function (abs, inGlobStar) { argument
275 if (inGlobStar && !ownProp(this.symlinks, abs))
348 GlobSync.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar) { argument
350 var entries = this._readdir(abs, inGlobStar)
[all …]
Dglob.js295 Glob.prototype._process = function (pattern, index, inGlobStar, cb) { argument
304 this._processQueue.push([pattern, index, inGlobStar, cb])
363 this._processGlobStar(prefix, read, abs, remain, index, inGlobStar, cb)
365 this._processReaddir(prefix, read, abs, remain, index, inGlobStar, cb)
368 Glob.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar, cb) { argument
370 this._readdir(abs, inGlobStar, function (er, entries) {
371 return self._processReaddir2(prefix, read, abs, remain, index, inGlobStar, entries, cb)
375 Glob.prototype._processReaddir2 = function (prefix, read, abs, remain, index, inGlobStar, entries, … argument
449 this._process([e].concat(remain), index, inGlobStar, cb)
525 Glob.prototype._readdir = function (abs, inGlobStar, cb) { argument
[all …]