• Home
  • Raw
  • Download

Lines Matching refs:abs

355   var abs = this._makeAbs(read)
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
466 var abs = isAbsolute(e) ? e : this._makeAbs(e)
472 e = abs
478 var c = this.cache[abs]
485 var st = this.statCache[abs]
492 Glob.prototype._readdirInGlobStar = function (abs, cb) { argument
499 return this._readdir(abs, false, cb)
501 var lstatkey = 'lstat\0' + abs
506 fs.lstat(abs, lstatcb)
513 self.symlinks[abs] = isSym
518 self.cache[abs] = 'FILE'
521 self._readdir(abs, false, cb)
525 Glob.prototype._readdir = function (abs, inGlobStar, cb) { argument
529 cb = inflight('readdir\0'+abs+'\0'+inGlobStar, cb)
534 if (inGlobStar && !ownProp(this.symlinks, abs))
535 return this._readdirInGlobStar(abs, cb)
537 if (ownProp(this.cache, abs)) {
538 var c = this.cache[abs]
547 fs.readdir(abs, readdirCb(this, abs, cb))
550 function readdirCb (self, abs, cb) { argument
553 self._readdirError(abs, er, cb)
555 self._readdirEntries(abs, entries, cb)
559 Glob.prototype._readdirEntries = function (abs, entries, cb) { argument
569 if (abs === '/')
570 e = abs + e
572 e = abs + '/' + e
577 this.cache[abs] = entries
589 var abs = this._makeAbs(f)
590 this.cache[abs] = 'FILE'
591 if (abs === this.cwdAbs) {
623 Glob.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar, cb) { argument
625 this._readdir(abs, inGlobStar, function (er, entries) {
626 self._processGlobStar2(prefix, read, abs, remain, index, inGlobStar, entries, cb)
631 Glob.prototype._processGlobStar2 = function (prefix, read, abs, remain, index, inGlobStar, entries,… argument
648 var isSym = this.symlinks[abs]
757 return fs.stat(abs, function (er, stat) {
759 self._stat2(f, abs, null, lstat, cb)
761 self._stat2(f, abs, er, stat, cb)
764 self._stat2(f, abs, er, lstat, cb)
769 Glob.prototype._stat2 = function (f, abs, er, stat, cb) { argument
771 this.statCache[abs] = false
776 this.statCache[abs] = stat
778 if (abs.slice(-1) === '/' && stat && !stat.isDirectory())
784 this.cache[abs] = this.cache[abs] || c