Searched refs:fileStruct (Results 1 – 5 of 5) sorted by relevance
44 let fileStruct = new FileStruct(); variable45 fileStruct.id = row.id;46 fileStruct.name = row.name;47 fileStruct.startTs = row.startTs;48 fileStruct.endTs = row.endTs;49 fileStruct.pid = row.pid;50 fileStruct.size = row.size;51 if (fileStruct.name.startsWith('Snapshot')) {52 fileStruct.type = FileType.SNAPSHOT;54 fileStruct.type = FileType.TIMELINE;[all …]
46 for (let fileStruct of this.fileStructs) { variable47 if (fileStruct.id == id) {48 return fileStruct;257 for (let fileStruct of fileModule) { variable258 let heapLoader = new HeapLoader(fileStruct);259 fileStruct.heapLoader = heapLoader;260 percent = 50 + Math.floor(50 / fileModule.length) * (fileModule.indexOf(fileStruct) + 1);
20 private fileStruct: FileStruct; property in AllocationLogic24 constructor(fileStruct: FileStruct) {25 this.fileStruct = fileStruct;27 this.traceNodes = this.fileStruct.snapshotStruct.traceNodes;77 functionList.push(this.fileStruct.snapshotStruct.functionInfos[node.functionIndex]);
37 private fileStruct: FileStruct; property in HeapLoader54 constructor(fileStruct: FileStruct) {55 this.fileStruct = fileStruct;56 this.fileId = fileStruct.id;57 this.nodeCount = fileStruct.snapshotStruct.nodeCount;58 this.edgeCount = fileStruct.snapshotStruct.edgeCount;59 this.nodeMap = fileStruct.snapshotStruct.nodeMap;60 this.edges = fileStruct.snapshotStruct.edges;61 this.allocationLogic = new AllocationLogic(this.fileStruct);477 let samples = this.fileStruct.snapshotStruct.samples;
45 let fileStruct = new FileStruct(); variable46 expect(fileStruct).not.toBeUndefined();