/third_party/typescript/tests/baselines/reference/ |
D | APISample_WatchWithOwnWatchHost.js | 35 directoryExists: ts.sys.directoryExists, 87 directoryExists: ts.sys.directoryExists, property
|
/third_party/typescript/src/compiler/ |
D | watchUtilities.ts | 11 directoryExists?(path: string): boolean; method 22 directoryExists: boolean; property 64 directoryExists: host.directoryExists && directoryExists, 113 if (host.directoryExists?.(rootDir)) { 166 function directoryExists(dirPath: string): boolean { function 168 …dReadDirectoryResult.has(ensureTrailingDirectorySeparator(path)) || host.directoryExists!(dirPath); 247 if (!host.directoryExists) { 256 directoryExists: host.directoryExists(fileOrDirectoryPath) 258 …if (fsQueryResult.directoryExists || hasEntry(parentResult.sortedAndCanonicalizedDirectories, getC…
|
D | watch.ts | 633 … directoryExists: maybeBind(directoryStructureHost, directoryStructureHost.directoryExists), 657 path => host.directoryExists!(path)); 695 directoryExists: path => system.directoryExists(path),
|
D | moduleNameResolver.ts | 288 …function getDefaultTypeRoots(currentDirectory: string, host: { directoryExists?: (directoryName: s… 291 if (!host.directoryExists) { 299 if (host.directoryExists!(atTypes)) { 434 const directoryExists = directoryProbablyExists(candidateDirectory, host); constant 435 if (!directoryExists && traceEnabled) { 440 !directoryExists, moduleResolutionState)); 525 if (host.directoryExists && host.getDirectories) { 529 if (host.directoryExists(root)) { 1888 const directoryExists = directoryProbablyExists(packageDirectory, host); constant 1889 if (directoryExists && host.fileExists(packageJsonPath)) { [all …]
|
D | program.ts | 86 function directoryExists(directoryPath: string): boolean { 90 if ((compilerHost.directoryExists || system.directoryExists)(directoryPath)) { 110 path => directoryExists(path)); 140 directoryExists: directoryName => system.directoryExists(directoryName), 155 directoryExists?(directory: string): boolean; method 168 const originalDirectoryExists = host.directoryExists; 246 host.directoryExists = directory => { 1152 …const { onProgramCreateComplete, fileExists, directoryExists } = updateHostForUseSourceOfProjectRe… constant 1357 directoryExists, 4158 const originalDirectoryExists = host.compilerHost.directoryExists; [all …]
|
D | sys.ts | 1244 path => sys.directoryExists(path)); 1349 directoryExists(path: string): boolean; method 1495 directoryExists, 1497 if (!nodeSystem.directoryExists(directoryName)) { 1892 function directoryExists(path: string): boolean { function
|
D | watchPublic.ts | 114 directoryExists?(path: string): boolean; method 496 compilerHost.directoryExists = originalDirectoryExists;
|
D | moduleSpecifiers.ts | 55 directoryExists: host.directoryExists,
|
/third_party/typescript/tests/cases/compiler/ |
D | APISample_WatchWithOwnWatchHost.ts | 38 directoryExists: ts.sys.directoryExists,
|
/third_party/typescript/src/services/ |
D | shims.ts | 87 directoryExists(directoryName: string): boolean; method 92 directoryExists(directoryName: string): boolean; method 355 public directoryExists: ((directoryName: string) => boolean) | undefined; property in ts.LanguageServiceShimHostAdapter 370 … this.directoryExists = directoryName => this.shimHost.directoryExists(directoryName); 510 public directoryExists: (directoryName: string) => boolean; 517 … this.directoryExists = directoryName => this.shimHost.directoryExists(directoryName); 520 this.directoryExists = undefined!; // TODO: GH#18217
|
D | transpile.ts | 70 directoryExists: () => true,
|
/third_party/typescript/src/harness/ |
D | fakesHosts.ts | 72 public directoryExists(path: string) { 205 public directoryExists(directoryName: string): boolean { 206 return this.sys.directoryExists(directoryName); 276 public directoryExists(directoryName: string): boolean { 277 return this.sys.directoryExists(directoryName);
|
D | harnessLanguageService.ts | 184 public directoryExists(path: string) { method in Harness.LanguageService.LanguageServiceAdapterHost 288 directoryExists(dirName: string): boolean { 289 return this.sys.directoryExists(dirName); 413 directoryExists(): boolean { 790 directoryExists(): boolean {
|
D | harnessIO.ts | 14 directoryExists(path: string): boolean; method 133 else if (!ts.sys.directoryExists(path)) { 151 directoryExists: path => ts.sys.directoryExists(path), 1366 if (fileCache[dirName] || IO.directoryExists(dirName)) {
|
D | virtualFileSystemWithWatch.ts | 811 … return entryKind === FileSystemEntryKind.File ? this.fileExists(s) : this.directoryExists(s); 848 directoryExists(s: string) {
|
D | vfsUtil.ts | 1209 directoryExists(path: string): boolean; method 1223 if (host.directoryExists(path)) {
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | cachingFileSystemInformation.ts | 5 directoryExists = "directoryExists", enumerator 17 … directoryExists: setCallsTrackingWithSingleArgFn(CalledMapsWithSingleArg.directoryExists), 53 logCacheEntry(logger, CalledMapsWithSingleArg.directoryExists);
|
D | session.ts | 15 directoryExists: () => false,
|
/third_party/typescript/src/jsTyping/ |
D | jsTyping.ts | 5 directoryExists(path: string): boolean; method 239 if (!host.directoryExists(packagesFolderPath)) {
|
/third_party/typescript/src/typingsInstallerCore/ |
D | typingsInstaller.ts | 403 if (!host.directoryExists(directoryName)) { 406 if (!host.directoryExists(directory)) {
|
/third_party/typescript/src/webServer/ |
D | webServer.ts | 203 directoryExists: returnFalse, // Module resolution
|
/third_party/typescript/src/server/ |
D | project.ts | 591 directoryExists(path: string): boolean { 592 return this.directoryStructureHost.directoryExists!(path); // TODO: GH#18217 1877 directoryExists: this.program.directoryExists,
|
/third_party/typescript/src/loggedIO/ |
D | loggedIO.ts | 431 wrapper.directoryExists = notSupported;
|
/third_party/typescript/src/testRunner/unittests/ |
D | moduleResolution.ts | 62 directoryExists: path => directories.has(path), 1470 directoryExists: _ => false constant
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/ |
D | parserharness.ts | 733 public directoryExists(s: string) { return false; } 1131 directoryExists: (path: string) => true,
|