Searched refs:referencePath (Results 1 – 10 of 10) sorted by relevance
/third_party/typescript/src/services/ |
D | goToDefinition.ts | 212 const referencePath = findReferenceInPosition(sourceFile.referencedFiles, position); constant 213 if (referencePath) { 214 const file = program.getSourceFileFromReference(sourceFile, referencePath); 215 … return file && { reference: referencePath, fileName: file.fileName, file, unverified: false };
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/ |
D | parserharness.ts | 1941 function referencePath(filename: string) { 2001 var refFilename = referencePath(relativeFilename); 2028 var refFilename = referencePath(relativeFilename);
|
/third_party/typescript/src/harness/ |
D | harnessIO.ts | 1318 function referencePath(fileName: string, baselineFolder?: string, subfolder?: string) { function 1346 …const refFileName = referencePath(relativeFileName, opts && opts.Baselinefolder, opts && opts.Subf… 1448 …const referenceDir = referencePath(relativeFileBase, opts && opts.Baselinefolder, opts && opts.Sub…
|
/third_party/typescript/tests/baselines/reference/ |
D | parserharness.js | 1941 function referencePath(filename: string) { function 2001 var refFilename = referencePath(relativeFilename); 2028 var refFilename = referencePath(relativeFilename); 3756 function referencePath(filename) { function 3808 var refFilename = referencePath(relativeFilename); 3828 var refFilename = referencePath(relativeFilename);
|
D | parserharness.errors.txt | 2271 function referencePath(filename: string) { 2331 var refFilename = referencePath(relativeFilename); 2358 var refFilename = referencePath(relativeFilename);
|
D | parserharness.symbols | 5886 function referencePath(filename: string) { 5887 >referencePath : Symbol(referencePath, Decl(parserharness.ts, 1937, 9)) 6025 var refFilename = referencePath(relativeFilename); 6027 >referencePath : Symbol(referencePath, Decl(parserharness.ts, 1937, 9)) 6100 var refFilename = referencePath(relativeFilename); 6102 >referencePath : Symbol(referencePath, Decl(parserharness.ts, 1937, 9))
|
D | parserharness.types | 7975 function referencePath(filename: string) { 7976 >referencePath : (filename: string) => string 8175 var refFilename = referencePath(relativeFilename); 8177 >referencePath(relativeFilename) : string 8178 >referencePath : (filename: string) => string 8281 var refFilename = referencePath(relativeFilename); 8283 >referencePath(relativeFilename) : string 8284 >referencePath : (filename: string) => string
|
/third_party/typescript/src/compiler/ |
D | utilities.ts | 4355 …NameFromPath(host: ResolveModuleNameResolutionHost, fileName: string, referencePath?: string): str… 4357 …const dir = toPath(referencePath ? getDirectoryPath(referencePath) : host.getCommonSourceDirectory… 4361 return referencePath ? ensurePathIsNonModuleName(extensionless) : extensionless;
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 18651 function getExternalModuleNameFromPath(host, fileName, referencePath) { argument 18653 …var dir = ts.toPath(referencePath ? ts.getDirectoryPath(referencePath) : host.getCommonSourceDirec… 18657 return referencePath ? ts.ensurePathIsNonModuleName(extensionless) : extensionless;
|
D | tsc.js | 14639 function getExternalModuleNameFromPath(host, fileName, referencePath) { argument 14641 …var dir = ts.toPath(referencePath ? ts.getDirectoryPath(referencePath) : host.getCommonSourceDirec… 14645 return referencePath ? ts.ensurePathIsNonModuleName(extensionless) : extensionless;
|