Lines Matching refs:total
89 private get total(): number {
197 currentValue = Utils.getBinaryByteWithUnit(this.total);
198 currentValuePercent = this.total / this.rootNode.size;
201 currentValue = `${this.total}`;
202 currentValuePercent = this.total / this.rootNode.count;
205 currentValue = Utils.getProbablyTime(this.total);
206 currentValuePercent = this.total / this.rootNode.dur;
209 currentValue = `${this.total}`;
210 currentValuePercent = this.total / this.rootNode.eventCount;
407 calibration = Utils.getByteWithUnit(((this.total * sizeRatio) / 10) * i);
410 calibration = Utils.getProbablyTime(((this.total * sizeRatio) / 10) * i);
414 calibration = `${Math.ceil(((this.total * sizeRatio) / 10) * i)}`;
446 setFuncFrame(children, this.rect, this.total, this._mode);
447 children.percent = childrenValue / this.total;
646 if (Math.round((this.total * sizeRatio) / ratio) <= 10) {
650 newWidth = this.canvas!.width / (10 / this.total);
654 if (Math.round((this.total * sizeRatio) / ratio) <= ms10) {
658 newWidth = this.canvas!.width / (ms10 / this.total);
787 const countPercent = ((this.getNodeValue(hoverNode) / this.total) * 100).toFixed(2);