Lines Matching refs:absPath
361 walk(cfg.outDistDir, absPath => {
362 const contents = fs.readFileSync(absPath);
363 const relPath = path.relative(cfg.outDistDir, absPath);
400 const absPath = path.normalize(path.join(cfg.outDistRootDir, uri));
401 fs.readFile(absPath, function(err, data) {
419 'Last-Modified': fs.statSync(absPath).mtime.toUTCString(),
487 function scanFile(absPath) { argument
488 console.assert(fs.existsSync(absPath));
489 console.assert(path.isAbsolute(absPath));
490 const normPath = path.relative(ROOT_DIR, absPath);
495 rule.f(absPath, captureGroup);
503 const filterFn = regex ? absPath => regex.test(absPath) : () => true;