Home
last modified time | relevance | path

Searched refs:normPath (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/npm/node_modules/tar/lib/
Dmkdir.js11 const normPath = require('./normalize-windows-path.js') constant
37 const cGet = (cache, key) => cache.get(normPath(key))
38 const cSet = (cache, key, val) => cache.set(normPath(key), val)
49 dir = normPath(dir)
66 const cwd = normPath(opt.cwd)
91 const sub = normPath(path.relative(cwd, dir))
100 const part = normPath(path.resolve(base + '/' + p))
110 statEr.path = statEr.path && normPath(statEr.path)
145 dir = normPath(dir)
161 const cwd = normPath(opt.cwd)
[all …]
Dread-entry.js4 const normPath = require('./normalize-windows-path.js') constant
51 this.path = normPath(header.path)
63 this.linkpath = normPath(header.linkpath)
96 this[k] = k === 'path' || k === 'linkpath' ? normPath(ex[k]) : ex[k]
Dunpack.js20 const normPath = require('./normalize-windows-path.js') constant
106 const cacheKeyNormalize = path => stripSlash(normPath(path))
202 this.cwd = normPath(path.resolve(opt.cwd || process.cwd()))
223 const parts = normPath(entry.path).split('/')
229 const linkparts = normPath(entry.linkpath).split('/')
238 const p = normPath(entry.path)
254 entry.absolute = normPath(path.resolve(entry.path))
256 entry.absolute = normPath(path.resolve(this.cwd, entry.path))
267 path: normPath(entry.path),
332 mkdir(normPath(dir), {
[all …]
Dwrite-entry.js9 const normPath = require('./normalize-windows-path.js') constant
15 path = normPath(path).replace(/^\.(\/|$)/, '')
51 this.path = normPath(p)
61 this.cwd = normPath(opt.cwd || process.cwd())
66 this.prefix = opt.prefix ? normPath(opt.prefix) : null
419 this.path = normPath(readEntry.path)
429 this.linkpath = normPath(readEntry.linkpath)
Dpath-reservations.js10 const normPath = require('./normalize-windows-path.js') constant
31 path = normPath(join(set[set.length - 1], path))
119 return stripSlashes(normPath(join(p)))
Dpack.js59 const normPath = require('./normalize-windows-path.js') constant
71 this.prefix = normPath(opt.prefix || '')
136 const absolute = normPath(path.resolve(this.cwd, p.path))
152 const absolute = normPath(path.resolve(this.cwd, p))
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeFilePath.cpp173 FilePath normPath = FilePath::normalize(*this); in exists() local
175 int result = stat(normPath.getPath(), &st); in exists()
181 FilePath normPath = FilePath::normalize(*this); in getType() local
183 int result = stat(normPath.getPath(), &st); in getType()