Lines Matching refs:abs
122 var abs = this._makeAbs(read)
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)
216 var abs = this._makeAbs(e)
222 e = abs
229 var c = this.cache[abs]
241 GlobSync.prototype._readdirInGlobStar = function (abs) { argument
245 return this._readdir(abs, false)
251 lstat = fs.lstatSync(abs)
260 this.symlinks[abs] = isSym
265 this.cache[abs] = 'FILE'
267 entries = this._readdir(abs, false)
272 GlobSync.prototype._readdir = function (abs, inGlobStar) { argument
275 if (inGlobStar && !ownProp(this.symlinks, abs))
276 return this._readdirInGlobStar(abs)
278 if (ownProp(this.cache, abs)) {
279 var c = this.cache[abs]
288 return this._readdirEntries(abs, fs.readdirSync(abs))
290 this._readdirError(abs, er)
295 GlobSync.prototype._readdirEntries = function (abs, entries) { argument
302 if (abs === '/')
303 e = abs + e
305 e = abs + '/' + e
310 this.cache[abs] = entries
321 var abs = this._makeAbs(f)
322 this.cache[abs] = 'FILE'
323 if (abs === this.cwdAbs) {
348 GlobSync.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar) { argument
350 var entries = this._readdir(abs, inGlobStar)
367 var isSym = this.symlinks[abs]