/third_party/typescript/src/testRunner/unittests/ |
D | paths.ts | 241 assert.strictEqual(ts.resolvePath(""), ""); 242 assert.strictEqual(ts.resolvePath("."), ""); 243 assert.strictEqual(ts.resolvePath("./"), ""); 244 assert.strictEqual(ts.resolvePath(".."), ".."); 245 assert.strictEqual(ts.resolvePath("../"), "../"); 246 assert.strictEqual(ts.resolvePath("/"), "/"); 247 assert.strictEqual(ts.resolvePath("/."), "/"); 248 assert.strictEqual(ts.resolvePath("/./"), "/"); 249 assert.strictEqual(ts.resolvePath("/../"), "/"); 250 assert.strictEqual(ts.resolvePath("/a"), "/a"); [all …]
|
D | publicApi.ts | 189 resolvePath: ts.identity,
|
/third_party/vk-gl-cts/scripts/android/ |
D | build_apk.py | 267 def resolvePath (config, path): function 279 return list(map(lambda p: resolvePath(config, p), paths)) 419 manifestPath = resolvePath(config, self.getManifestPath()) 474 dstDir = os.path.dirname(resolvePath(config, [GeneratedResSourcePath(self.package)])) 484 "-S", resolvePath(config, self.package.getResPath()), 485 "-M", resolvePath(config, self.package.getManifestPath()), 486 "-J", resolvePath(config, [BuildRoot(), self.package.getAppDirName(), "src"]), 518 jarPath = resolvePath(config, self.package.getClassesJarPath()) 519 objPath = resolvePath(config, [BuildRoot(), self.package.getAppDirName(), "obj"]) 520 classPaths = [objPath] + [resolvePath(config, lib.getClassesJarPath()) for lib in self.libraries] [all …]
|
/third_party/node/deps/v8/tools/tracing/proto-converter/ |
D | proto-to-json.ts | 74 const { resolvePath } = root; constant 77 root.resolvePath = (origin, target) => { 83 return resolvePath(origin, target);
|
/third_party/weex-loader/deps/weex-scripter/lib/ |
D | require-parse.js | 10 function resolvePath(searchPath, pathBase) { function 27 var resolvedPath = resolvePath(rawPath, path.dirname(currentPath))
|
/third_party/typescript/src/testRunner/ |
D | rwcRunner.ts | 89 const normalized = ts.normalizeSlashes(Harness.IO.resolvePath(fileName)!); 99 … const unitName = ts.normalizeSlashes(Harness.IO.resolvePath(fileRead.path)!); 135 const unitName = ts.normalizeSlashes(Harness.IO.resolvePath(fileName)!);
|
D | projectsRunner.ts | 292 … let diskProjectPath = ts.normalizeSlashes(Harness.IO.resolvePath(this.testCase.projectRoot)!);
|
/third_party/typescript/src/loggedIO/ |
D | loggedIO.ts | 311 wrapper.resolvePath = recordReplay(wrapper.resolvePath, underlying)( 312 path => callAndRecord(underlying.resolvePath(path), recordLog!.pathsResolved, { path }),
|
/third_party/typescript/src/compiler/ |
D | path.ts | 528 export function resolvePath(path: string, ...paths: (string | undefined)[]): string { function 830 resolvePath(currentDirectory, directoryPathOrUrl), 831 resolvePath(currentDirectory, relativeOrAbsolutePath),
|
D | sys.ts | 1347 resolvePath(path: string): string; method 1493 resolvePath: path => _path.resolve(path),
|
D | utilitiesPublic.ts | 334 …sys: { getExecutingFilePath(): string, resolvePath(path: string): string, fileExists(fileName: str… 368 filePath = sys.resolvePath(combinePaths(filePath, "diagnosticMessages.generated.json"));
|
/third_party/typescript/src/harness/ |
D | vpathUtil.ts | 14 export import resolve = ts.resolvePath;
|
D | harnessIO.ts | 6 resolvePath(path: string): string | undefined; method 143 resolvePath: (path: string) => ts.sys.resolvePath(path), 374 … const etsOptionFilePath = IO.resolvePath("tests/cases/fourslash/etsOption.json"); 379 const absuluteFilePath = IO.resolvePath(filename);
|
D | harnessUtils.ts | 350 … line = line.replace(/\bfile:\/\/\/(.*?)(?=(:\d+)*($|\)))/, (_, path) => ts.sys.resolvePath(path));
|
D | fakesHosts.ts | 133 public resolvePath(path: string) {
|
/third_party/typescript/src/webServer/ |
D | webServer.ts | 208 resolvePath: identity, // Plugins
|
/third_party/typescript/src/linter/ArkTSLinter_1_1/ |
D | LinterRunner.ts | 92 …const isInSdk = etsLoaderPath ? normalizePath(fileToLint.fileName).indexOf(resolvePath(etsLoaderPa…
|
D | InteropTypescriptLinter.ts | 303 …normalizePath(resolvedModule.resolvedFileName).startsWith(resolvePath(InteropTypescriptLinter.etsL…
|
/third_party/typescript/src/services/ |
D | stringCompletions.ts | 485 const absolutePath = resolvePath(scriptPath, fragment); 795 const normalizedPrefix = resolvePath(parsed.prefix);
|
D | goToDefinition.ts | 235 …const fileName = verifiedFileName || resolvePath(getDirectoryPath(sourceFile.fileName), node.text);
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | session.ts | 13 resolvePath(): string { return undefined!; }, // TODO: GH#18217
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/ |
D | parserharness.ts | 735 public resolvePath(s: string) { return s; } 1133 resolvePath: (path: string) => path
|
/third_party/typescript/tests/baselines/reference/ |
D | parserharness.js | 735 public resolvePath(s: string) { return s; } 1133 resolvePath: (path: string) => path 2706 EmitterIOHost.prototype.resolvePath = function (s) { return s; }; method in EmitterIOHost 3057 resolvePath: function (path) { return path; } method
|
/third_party/typescript/src/tsserver/ |
D | nodeServer.ts | 201 …const currentDrive = extractWatchDirectoryCacheKey(sys.resolvePath(sys.getCurrentDirectory()), /*c…
|
/third_party/node/doc/api/ |
D | module.md | 796 import { dirname, extname, resolve as resolvePath } from 'node:path'; 843 const packagePath = resolvePath(dir, 'package.json'); 854 return dir.length > 1 && getPackageType(resolvePath(dir, '..'));
|