Lines Matching refs:relativePath
987 zip.forEach(function (relativePath, file) { argument
995 name : relativePath,
1519 var filename, relativePath, file;
1524 relativePath = filename.slice(this.root.length, filename.length);
1525 …if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the cur…
1526 …cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the …
1540 this.forEach(function (relativePath, entry) { argument
1541 if (search(relativePath, entry)) { // the file matches the function
1562 return this.filter(function(relativePath, file) { argument
1563 return !file.dir && regexp.test(relativePath);
1593 return this.filter(function(relativePath, file) { argument
1594 return file.dir && arg.test(relativePath);
1629 var kids = this.filter(function(relativePath, file) { argument