Lines Matching refs:node
137 public getParentFunction(node: AllocationFunction) {
138 let filStruct = this.baseFileStruct ? this.baseFileStruct : this.getFileStructById(node.fileId);
142 filStruct.heapLoader.loadAllocationParent(node);
150 public getNextForConstructor(node: ConstructorItem): Array<ConstructorItem> {
151 let filStruct = this.baseFileStruct ? this.baseFileStruct : this.getFileStructById(node.fileId);
153 switch (node.type) {
155 children = node.classChildren;
159 children = filStruct!.heapLoader.getNextNode(node);
174 let node = baseFileStruct.heapLoader.getNodes()[idx]; variable
175 let compareNode = HeapNodeToConstructorItem(node);
179 compareNode.hasNext = node.edgeCount > 0;
184 let node = targetFileStruct.heapLoader.getNodes()[idx]; variable
185 let compareNode = HeapNodeToConstructorItem(node);
189 compareNode.hasNext = node.edgeCount > 0;
216 public getAllocationStackData(node: ConstructorItem): Array<HeapTraceFunctionInfo> {
218 let filStruct = this.baseFileStruct ? this.baseFileStruct : this.getFileStructById(node.fileId);
219 …if (!filStruct && (node.type == ConstructorType.ClassType || node.type == ConstructorType.Retainer…
222 functions = filStruct!.heapLoader.getAllocationStack(node.traceNodeId);