Home
last modified time | relevance | path

Searched refs:localPath (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
Disolated-reifier.js67 root.localPath = idealTree.path
96 result.localPath = node.path
267 path: proxiedIdealTree.root.localPath,
268 realpath: proxiedIdealTree.root.localPath,
291 path: c.localPath,
292 realpath: c.localPath,
307 top: { path: proxiedIdealTree.root.localPath },
323 path: join(proxiedIdealTree.root.localPath, location),
324 realpath: join(proxiedIdealTree.root.localPath, location),
404 path: join(dep.root.localPath, nmFolder, dep.name),
[all …]
/third_party/skia/src/core/
DSkScalerContext.cpp725 SkPath localPath; in internalGetPath() local
733 path.transform(inverse, &localPath); in internalGetPath()
750 if (fPathEffect->filterPath(&effectPath, localPath, &rec, nullptr, matrix)) { in internalGetPath()
751 localPath.swap(effectPath); in internalGetPath()
757 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath()
758 localPath.swap(strokePath); in internalGetPath()
769 localPath.transform(matrix, devPath); in internalGetPath()
/third_party/typescript/src/harness/
DharnessIO.ts1309 export function localPath(fileName: string, baselineFolder?: string, subfolder?: string) { function
1417 …const actualFileName = localPath(relativeFileName, opts && opts.Baselinefolder, opts && opts.Subfo…
1436 …const actualFileName = localPath(relativeFileName, opts && opts.Baselinefolder, opts && opts.Subfo…
1463 …IO.writeFile(localPath(file + ".delete", opts && opts.Baselinefolder, opts && opts.Subfolder), "");
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserharness.ts1932 function localPath(filename: string) {
2052 var actualFilename = localPath(relativeFilename);
/third_party/typescript/tests/baselines/reference/
Dparserharness.js1932 function localPath(filename: string) { function
2052 var actualFilename = localPath(relativeFilename);
3748 function localPath(filename) { function
3843 var actualFilename = localPath(relativeFilename);
Dparserharness.errors.txt2262 function localPath(filename: string) {
2384 var actualFilename = localPath(relativeFilename);
Dparserharness.symbols5864 function localPath(filename: string) {
5865 >localPath : Symbol(localPath, Decl(parserharness.ts, 1928, 9))
6169 var actualFilename = localPath(relativeFilename);
6171 >localPath : Symbol(localPath, Decl(parserharness.ts, 1928, 9))
Dparserharness.types7939 function localPath(filename: string) {
7940 >localPath : (filename: string) => string
8385 var actualFilename = localPath(relativeFilename);
8387 >localPath(relativeFilename) : string
8388 >localPath : (filename: string) => string
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs13550 async _uploadLocalFile(localPath, remotePath, command, options) {
13551 const fd = await fsOpen(localPath, "r");
13606 async _downloadToFile(localPath, remotePath, startAt) {
13609 const fd = await fsOpen(localPath, fileSystemFlags);
13618 const localFileStats = await ignoreError(() => fsStat(localPath));
13622 await ignoreError(() => fsUnlink(localPath));
13783 const localPath = (0, path_1.join)(localDirPath, file.name);
13786 await this._downloadFromWorkingDir(localPath);
13789 await this.downloadTo(localPath, file.name);