Lines Matching refs:relativePath
51711 zip.forEach(function (relativePath, file) {
51719 name: relativePath,
52263 var filename, relativePath, file;
52271 relativePath = filename.slice(this.root.length, filename.length);
52273 if (relativePath && filename.slice(0, this.root.length) === this.root) {
52275 …cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the …
52289 this.forEach(function (relativePath, entry) {
52290 if (search(relativePath, entry)) {
52311 return this.filter(function (relativePath, file) {
52312 return !file.dir && regexp.test(relativePath);
52344 return this.filter(function (relativePath, file) {
52345 return file.dir && arg.test(relativePath);
52381 var kids = this.filter(function (relativePath, file) {