Home
last modified time | relevance | path

Searched refs:resolvePath (Results 1 – 25 of 46) sorted by relevance

12

/third_party/typescript/src/testRunner/unittests/
Dpaths.ts241 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 …]
DpublicApi.ts138 resolvePath: ts.identity,
/third_party/vk-gl-cts/scripts/android/
Dbuild_apk.py256 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/
Drequire-parse.js10 function resolvePath(searchPath, pathBase) { function
27 var resolvedPath = resolvePath(rawPath, path.dirname(currentPath))
/third_party/node/deps/npm/test/tap/
Dgently-rm-symlinked-global-dir.js86 function resolvePath () { function
93 var pkgPath = resolvePath(lnk, !isWindows && 'lib', 'node_modules', '@test', 'linked')
/third_party/typescript/src/testRunner/
DrwcRunner.ts89 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)!);
DprojectsRunner.ts288 … let diskProjectPath = ts.normalizeSlashes(Harness.IO.resolvePath(this.testCase.projectRoot)!);
/third_party/typescript/src/harness/
DloggedIO.ts313 wrapper.resolvePath = recordReplay(wrapper.resolvePath, underlying)(
314 path => callAndRecord(underlying.resolvePath(path), recordLog!.pathsResolved, { path }),
DharnessIO.ts6 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);
DvpathUtil.ts14 export import resolve = ts.resolvePath;
DharnessUtils.ts370 … line = line.replace(/\bfile:\/\/\/(.*?)(?=(:\d+)*($|\)))/, (_, path) => ts.sys.resolvePath(path));
DfakesHosts.ts129 public resolvePath(path: string) {
DharnessLanguageService.ts751 resolvePath(path: string): string {
DvirtualFileSystemWithWatch.ts1123 readonly resolvePath = (s: string) => s;
/third_party/typescript/src/compiler/
Dpath.ts526 export function resolvePath(path: string, ...paths: (string | undefined)[]): string { function
827 resolvePath(currentDirectory, directoryPathOrUrl),
828 resolvePath(currentDirectory, relativeOrAbsolutePath),
DutilitiesPublic.ts330 …sys: { getExecutingFilePath(): string, resolvePath(path: string): string, fileExists(fileName: str…
364 filePath = sys.resolvePath(combinePaths(filePath, "diagnosticMessages.generated.json"));
Dsys.ts1098 resolvePath(path: string): string; method
1237 resolvePath: path => _path.resolve(path),
DmoduleSpecifiers.ts316 const option = resolvePath(symlinkDirectory, relative);
Ddebug.ts667 const basePath = getDirectoryPath(resolvePath(sys.getExecutingFilePath()));
/third_party/typescript/src/webServer/
DwebServer.ts158 resolvePath: identity, // Plugins
/third_party/typescript/src/services/
DstringCompletions.ts399 const absolutePath = resolvePath(scriptPath, fragment);
566 const normalizedPrefix = resolvePath(parsed.prefix);
/third_party/typescript/src/testRunner/unittests/tsserver/
Dsession.ts13 resolvePath(): string { return undefined!; }, // TODO: GH#18217
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserharness.ts735 public resolvePath(s: string) { return s; }
1133 resolvePath: (path: string) => path
/third_party/typescript/tests/baselines/reference/
Dparserharness.js735 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/
DnodeServer.ts202 …const currentDrive = extractWatchDirectoryCacheKey(sys.resolvePath(sys.getCurrentDirectory()), /*c…

12