/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 | 138 resolvePath: ts.identity,
|
/third_party/vk-gl-cts/scripts/android/ |
D | build_apk.py | 256 def resolvePath (config, path): function 268 return list(map(lambda p: resolvePath(config, p), paths)) 408 manifestPath = resolvePath(config, self.getManifestPath()) 460 dstDir = os.path.dirname(resolvePath(config, [GeneratedResSourcePath(self.package)])) 470 "-S", resolvePath(config, self.package.getResPath()), 471 "-M", resolvePath(config, self.package.getManifestPath()), 472 "-J", resolvePath(config, [BuildRoot(), self.package.getAppDirName(), "src"]), 504 jarPath = resolvePath(config, self.package.getClassesJarPath()) 505 objPath = resolvePath(config, [BuildRoot(), self.package.getAppDirName(), "obj"]) 506 classPaths = [objPath] + [resolvePath(config, lib.getClassesJarPath()) for lib in self.libraries] [all …]
|
/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/node/deps/npm/test/tap/ |
D | gently-rm-symlinked-global-dir.js | 86 function resolvePath () { function 93 var pkgPath = resolvePath(lnk, !isWindows && 'lib', 'node_modules', '@test', 'linked')
|
/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 | 288 … let diskProjectPath = ts.normalizeSlashes(Harness.IO.resolvePath(this.testCase.projectRoot)!);
|
/third_party/typescript/src/harness/ |
D | loggedIO.ts | 313 wrapper.resolvePath = recordReplay(wrapper.resolvePath, underlying)( 314 path => callAndRecord(underlying.resolvePath(path), recordLog!.pathsResolved, { path }),
|
D | harnessIO.ts | 6 resolvePath(path: string): string | undefined; method 136 resolvePath: (path: string) => ts.sys.resolvePath(path), 173 …= IO.readFile(tcServicesFileName) + IO.newLine() + `//# sourceURL=${IO.resolvePath(tcServicesFileN… 368 … const etsOptionFilePath = IO.resolvePath("tests/cases/fourslash/etsOption.json"); 373 const absuluteFilePath = IO.resolvePath(filename);
|
D | vpathUtil.ts | 14 export import resolve = ts.resolvePath;
|
D | harnessUtils.ts | 370 … line = line.replace(/\bfile:\/\/\/(.*?)(?=(:\d+)*($|\)))/, (_, path) => ts.sys.resolvePath(path));
|
D | fakesHosts.ts | 129 public resolvePath(path: string) {
|
D | harnessLanguageService.ts | 751 resolvePath(path: string): string {
|
D | virtualFileSystemWithWatch.ts | 1123 readonly resolvePath = (s: string) => s;
|
/third_party/typescript/src/compiler/ |
D | path.ts | 526 export function resolvePath(path: string, ...paths: (string | undefined)[]): string { function 827 resolvePath(currentDirectory, directoryPathOrUrl), 828 resolvePath(currentDirectory, relativeOrAbsolutePath),
|
D | utilitiesPublic.ts | 330 …sys: { getExecutingFilePath(): string, resolvePath(path: string): string, fileExists(fileName: str… 364 filePath = sys.resolvePath(combinePaths(filePath, "diagnosticMessages.generated.json"));
|
D | sys.ts | 1098 resolvePath(path: string): string; method 1237 resolvePath: path => _path.resolve(path),
|
D | moduleSpecifiers.ts | 316 const option = resolvePath(symlinkDirectory, relative);
|
D | debug.ts | 667 const basePath = getDirectoryPath(resolvePath(sys.getExecutingFilePath()));
|
/third_party/typescript/src/webServer/ |
D | webServer.ts | 158 resolvePath: identity, // Plugins
|
/third_party/typescript/src/services/ |
D | stringCompletions.ts | 399 const absolutePath = resolvePath(scriptPath, fragment); 566 const normalizedPrefix = resolvePath(parsed.prefix);
|
/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 | 202 …const currentDrive = extractWatchDirectoryCacheKey(sys.resolvePath(sys.getCurrentDirectory()), /*c…
|