Home
last modified time | relevance | path

Searched refs:directoryExists (Results 1 – 25 of 42) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DAPISample_WatchWithOwnWatchHost.js35 directoryExists: ts.sys.directoryExists,
87 directoryExists: ts.sys.directoryExists, property
/third_party/typescript/src/compiler/
DwatchUtilities.ts11 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…
Dwatch.ts633directoryExists: maybeBind(directoryStructureHost, directoryStructureHost.directoryExists),
657 path => host.directoryExists!(path));
695 directoryExists: path => system.directoryExists(path),
DmoduleNameResolver.ts288 …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 …]
Dprogram.ts86 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 …]
Dsys.ts1244 path => sys.directoryExists(path));
1349 directoryExists(path: string): boolean; method
1495 directoryExists,
1497 if (!nodeSystem.directoryExists(directoryName)) {
1892 function directoryExists(path: string): boolean { function
DwatchPublic.ts114 directoryExists?(path: string): boolean; method
496 compilerHost.directoryExists = originalDirectoryExists;
DmoduleSpecifiers.ts55 directoryExists: host.directoryExists,
/third_party/typescript/tests/cases/compiler/
DAPISample_WatchWithOwnWatchHost.ts38 directoryExists: ts.sys.directoryExists,
/third_party/typescript/src/services/
Dshims.ts87 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
Dtranspile.ts70 directoryExists: () => true,
/third_party/typescript/src/harness/
DfakesHosts.ts72 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);
DharnessLanguageService.ts184 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 {
DharnessIO.ts14 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)) {
DvirtualFileSystemWithWatch.ts811 … return entryKind === FileSystemEntryKind.File ? this.fileExists(s) : this.directoryExists(s);
848 directoryExists(s: string) {
DvfsUtil.ts1209 directoryExists(path: string): boolean; method
1223 if (host.directoryExists(path)) {
/third_party/typescript/src/testRunner/unittests/tsserver/
DcachingFileSystemInformation.ts5 directoryExists = "directoryExists", enumerator
17directoryExists: setCallsTrackingWithSingleArgFn(CalledMapsWithSingleArg.directoryExists),
53 logCacheEntry(logger, CalledMapsWithSingleArg.directoryExists);
Dsession.ts15 directoryExists: () => false,
/third_party/typescript/src/jsTyping/
DjsTyping.ts5 directoryExists(path: string): boolean; method
239 if (!host.directoryExists(packagesFolderPath)) {
/third_party/typescript/src/typingsInstallerCore/
DtypingsInstaller.ts403 if (!host.directoryExists(directoryName)) {
406 if (!host.directoryExists(directory)) {
/third_party/typescript/src/webServer/
DwebServer.ts203 directoryExists: returnFalse, // Module resolution
/third_party/typescript/src/server/
Dproject.ts591 directoryExists(path: string): boolean {
592 return this.directoryStructureHost.directoryExists!(path); // TODO: GH#18217
1877 directoryExists: this.program.directoryExists,
/third_party/typescript/src/loggedIO/
DloggedIO.ts431 wrapper.directoryExists = notSupported;
/third_party/typescript/src/testRunner/unittests/
DmoduleResolution.ts62 directoryExists: path => directories.has(path),
1470 directoryExists: _ => false constant
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserharness.ts733 public directoryExists(s: string) { return false; }
1131 directoryExists: (path: string) => true,

12