Home
last modified time | relevance | path

Searched refs:SortedReadonlyArray (Results 1 – 20 of 20) sorted by relevance

/third_party/typescript/src/server/
DtypingsCache.ts12 …t(p: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string> | u…
31 readonly typings: SortedReadonlyArray<string>;
32 readonly unresolvedImports: SortedReadonlyArray<string> | undefined;
77 …ction unresolvedImportsChanged(imports1: SortedReadonlyArray<string> | undefined, imports2: Sorted…
99 …enqueueInstallTypingsForProject(project: Project, unresolvedImports: SortedReadonlyArray<string> |…
126 …pilerOptions, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ne…
DutilitiesPublic.ts9 export const emptyArray: SortedReadonlyArray<never> = createSortedArray<never>();
34 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ca…
Dproject.ts154 private externalFiles: SortedReadonlyArray<string> | undefined;
170 lastCachedUnresolvedImportsList: SortedReadonlyArray<string> | undefined;
227 typingFiles: SortedReadonlyArray<string> = emptyArray;
855 getExternalFiles(): SortedReadonlyArray<string> {
1219 updateTypingFiles(typingFiles: SortedReadonlyArray<string>) {
1354 … const oldExternalFiles = this.externalFiles || emptyArray as SortedReadonlyArray<string>;
1989 …ram, cachedUnresolvedImportsPerFile: ESMap<Path, readonly string[]>): SortedReadonlyArray<string> {
/third_party/typescript/src/jsTyping/
Dtypes.ts19 readonly unresolvedImports: SortedReadonlyArray<string>;
95 readonly unresolvedImports: SortedReadonlyArray<string>;
/third_party/typescript/src/services/
DorganizeImports.ts498 …orted(imports: readonly AnyImportOrRequireStatement[]): imports is SortedReadonlyArray<AnyImportOr…
502 …ecifiersAreSorted(imports: readonly ImportSpecifier[]): imports is SortedReadonlyArray<ImportSpeci…
506 …export function getImportDeclarationInsertionIndex(sortedImports: SortedReadonlyArray<AnyImportOrR…
511 …export function getImportSpecifierInsertionIndex(sortedImports: SortedReadonlyArray<ImportSpecifie…
/third_party/typescript/src/compiler/
DcorePublic.ts19 export interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface
Dcore.ts750 …ion deduplicateSorted<T>(array: SortedReadonlyArray<T>, comparer: EqualityComparer<T> | Comparer<T…
751 if (array.length === 0) return emptyArray as any as SortedReadonlyArray<T>;
774 return deduplicated as any as SortedReadonlyArray<T>;
801 export function sortAndDeduplicate<T>(array: readonly string[]): SortedReadonlyArray<string>;
802 …adonly T[], comparer: Comparer<T>, equalityComparer?: EqualityComparer<T>): SortedReadonlyArray<T>;
803 …only T[], comparer?: Comparer<T>, equalityComparer?: EqualityComparer<T>): SortedReadonlyArray<T> {
1023 export function sort<T>(array: readonly T[], comparer?: Comparer<T>): SortedReadonlyArray<T> {
1024 … return (array.length === 0 ? array : array.slice().sort(comparer)) as SortedReadonlyArray<T>;
1058 …export function stableSort<T>(array: readonly T[], comparer: Comparer<T>): SortedReadonlyArray<T> {
1061 return indices.map(i => array[i]) as SortedArray<T> as SortedReadonlyArray<T>;
Dsourcemap.ts656 let generatedMappings: SortedReadonlyArray<MappedPosition> | undefined;
657 let sourceMappings: readonly SortedReadonlyArray<SourceMappedPosition>[] | undefined;
DwatchUtilities.ts144 function hasEntry(entries: SortedReadonlyArray<Canonicalized>, name: Canonicalized) {
Ddebug.ts330 const enumMemberCache = new Map<any, SortedReadonlyArray<[number, string]>>();
Dprogram.ts2703 function getOptionsDiagnostics(): SortedReadonlyArray<Diagnostic> {
2719 function getGlobalDiagnostics(): SortedReadonlyArray<Diagnostic> {
2720 …peChecker().getGlobalDiagnostics().slice()) : emptyArray as any as SortedReadonlyArray<Diagnostic>;
DutilitiesPublic.ts9 …ndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T> {
/third_party/typescript/src/testRunner/unittests/tsserver/
DtypingsInstaller.ts203 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
336 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
435 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
475 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
522 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
Dhelpers.ts221 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
/third_party/typescript/src/tsserver/
DnodeServer.ts532 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>): v…
/third_party/typescript/lib/
Dtsserverlibrary.d.ts28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface
4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>;
6040 readonly unresolvedImports: SortedReadonlyArray<string>;
6089 readonly unresolvedImports: SortedReadonlyArray<string>;
7503 const emptyArray: SortedReadonlyArray<never>;
7524 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ca…
10521 …t(p: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string> | u…
10661 getExternalFiles(): SortedReadonlyArray<string>;
Dtypescript.d.ts28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface
4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>;
6040 readonly unresolvedImports: SortedReadonlyArray<string>;
6089 readonly unresolvedImports: SortedReadonlyArray<string>;
DtypescriptServices.d.ts28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface
4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>;
6040 readonly unresolvedImports: SortedReadonlyArray<string>;
6089 readonly unresolvedImports: SortedReadonlyArray<string>;
/third_party/typescript/tests/baselines/reference/api/
Dtsserverlibrary.d.ts28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface
4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>;
6040 readonly unresolvedImports: SortedReadonlyArray<string>;
6089 readonly unresolvedImports: SortedReadonlyArray<string>;
7503 const emptyArray: SortedReadonlyArray<never>;
7524 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ca…
10521 …t(p: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string> | u…
10661 getExternalFiles(): SortedReadonlyArray<string>;
Dtypescript.d.ts28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface
4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>;
6040 readonly unresolvedImports: SortedReadonlyArray<string>;
6089 readonly unresolvedImports: SortedReadonlyArray<string>;