Lines Matching refs:Set
166 private _componentNames: Set<string> = new Set(['ForEach']);
173 public set componentNames(componentNames: Set<string>) {
582 let allModifiedFiles: Set<string> = new Set();
585 watchRemovedFiles: string[], hotReloadSupportFiles: Set<string>): FilesObj {
588 allModifiedFiles = new Set([...allModifiedFiles, ...watchModifiedFiles
617 export function writeUseOSFiles(useOSFiles: Set<string>): void {
631 export function writeCollectionFile(cachePath: string, appCollection: Map<string, Set<string>>,
632 …allComponentsOrModules: Map<string, Array<string>>, fileName: string, allFiles: Set<string> = null,
652 export function getAllComponentsOrModules(allFiles: Set<string>,
708 …transformedFiles: Set<string> = new Set(); // ArkTS & TS Files which should be transformed in this…
711 resourceToFile: { [resource: string]: Set<string> } = {}; // Resource is used by which file
712 lastResourceList: Set<string> = new Set();
713 resourceList: Set<string> = new Set(); // Whole project resource
714 shouldInvalidFiles: Set<string> = new Set();
718 resourcesArr: Set<string> = new Set();
719 lastResourcesSet: Set<string> = new Set();
723 builderLikeCollection: Set<string> = new Set();
738 resourceToFileCacheInfo: { [resource: string]: Set<string> }) {
741 this.resourceToFile[element] = new Set(resourceToFileCacheInfo[element]);
743 this.lastResourceList = new Set(resourceListCacheInfo);
753 fileCacheInfo.fileToResourceList = new Set(fileCacheInfo.fileToResourceList);
755 fileCacheInfo.fileToResourceList = new Set();
788 resourceToFileCacheInfo[i] = new Set(resourceToFileCacheInfo[i]);
790 …const resourceToFile: { [resource: string]: Set<string> | string[] } = Object.assign(resourceToFil…
794 if (!(fileCacheInfo[id].fileToResourceList as Set<string>).has(resource)) {
796 resourceToFile[resource] = new Set();
798 (resourceToFile[resource] as Set<string>).add(id);
803 (resourceToFile[resource] as Set<string>).delete(id);
811 this.resourceToFile = resourceToFile as { [resource: string]: Set<string> };
843 this.resourceToFile[resource] = new Set();
861 this.transformedFiles = new Set();
863 this.lastResourceList = new Set([...this.resourceList]);
882 fileToResourceList: Set<string> | string[]; // How much Resource is used
888 fileToResourceList: new Set()
890 newFileToResourceList: Set<string> = new Set()
902 fileToResourceList: new Set()
904 recycleComponents: Set<string> = new Set([]);
905 compFromDETS: Set<string> = new Set();
906 animatableExtendAttribute: Map<string, Set<string>> = new Map();
933 export function resourcesRawfile(rawfilePath: string, resourcesArr: Set<string>, resourceName: stri…
950 export function differenceResourcesRawfile(oldRawfile: Set<string>, newRawfile: Set<string>): boole…