Lines Matching refs:Set
162 private _componentNames: Set<string> = new Set(['ForEach']);
169 public set componentNames(componentNames: Set<string>) {
545 let allModifiedFiles: Set<string> = new Set();
548 watchRemovedFiles: string[], hotReloadSupportFiles: Set<string>): FilesObj {
551 allModifiedFiles = new Set([...allModifiedFiles, ...watchModifiedFiles
580 export function writeUseOSFiles(useOSFiles: Set<string>): void {
594 export function writeCollectionFile(cachePath: string, appCollection: Map<string, Set<string>>,
595 …allComponentsOrModules: Map<string, Array<string>>, fileName: string, allFiles: Set<string> = null…
610 export function getAllComponentsOrModules(allFiles: Set<string>,
666 …transformedFiles: Set<string> = new Set(); // ArkTS & TS Files which should be transformed in this…
669 resourceToFile: {[resource: string]: Set<string>} = {}; // Resource is used by which file
670 lastResourceList: Set<string> = new Set();
671 resourceList: Set<string> = new Set(); // Whole project resource
672 shouldInvalidFiles: Set<string> = new Set();
676 resourcesArr: Set<string> = new Set();
677 lastResourcesSet: Set<string> = new Set();
684 resourceToFileCacheInfo: {[resource: string]: Set<string>}) {
687 this.resourceToFile[element] = new Set(resourceToFileCacheInfo[element]);
689 this.lastResourceList = new Set(resourceListCacheInfo);
699 fileCacheInfo.fileToResourceList = new Set(fileCacheInfo.fileToResourceList);
701 fileCacheInfo.fileToResourceList = new Set();
734 resourceToFileCacheInfo[i] = new Set(resourceToFileCacheInfo[i]);
736 …const resourceToFile: {[resource: string]: Set<string> | string[]} = Object.assign(resourceToFileC…
740 if (!(fileCacheInfo[id].fileToResourceList as Set<string>).has(resource)) {
742 resourceToFile[resource] = new Set();
744 (resourceToFile[resource] as Set<string>).add(id);
749 (resourceToFile[resource] as Set<string>).delete(id);
757 this.resourceToFile = resourceToFile as {[resource: string]: Set<string>};
789 this.resourceToFile[resource] = new Set();
807 this.transformedFiles = new Set();
809 this.lastResourceList = new Set([...this.resourceList]);
828 fileToResourceList: Set<string> | string[]; // How much Resource is used
834 fileToResourceList: new Set()
836 newFileToResourceList: Set<string> = new Set()
848 fileToResourceList: new Set()
850 recycleComponents: Set<string> = new Set([]);
851 compFromDETS: Set<string> = new Set();
852 animatableExtendAttribute: Map<string, Set<string>> = new Map();
879 export function resourcesRawfile(rawfilePath: string, resourcesArr: Set<string>, resourceName: stri…
896 export function differenceResourcesRawfile(oldRawfile: Set<string>, newRawfile: Set<string>): boole…