Lines Matching refs:flamegraph
67 private flamegraph: Flamegraph = new Flamegraph([]);
81 if (heapDumpInfo.flamegraph) {
82 this.flamegraph.updateDataIfChanged(
83 this.nodeRendering(), heapDumpInfo.flamegraph);
85 const height = heapDumpInfo.flamegraph ?
86 this.flamegraph.getHeight() + HEADER_HEIGHT :
92 if (this.flamegraph !== undefined) {
98 if (this.flamegraph !== undefined) {
104 if (this.flamegraph !== undefined) {
247 const flamegraphData = data.flamegraph === undefined ? [] : data.flamegraph;
248 this.flamegraph.updateDataIfChanged(
261 this.flamegraph.draw(ctx, size.width, size.height, 0, HEADER_HEIGHT, unit);
265 const expandedCallsite = this.flamegraph.onMouseClick({x, y});
271 this.flamegraph.onMouseMove({x, y});
276 this.flamegraph.onMouseOut();