Home | History | Annotate | Download | only in profiler

Lines Matching refs:totalTime

92     totalTime: function()
94 return this._cpuProfile.profileHead.totalTime;
166 function onCloseFrame(depth, node, startTime, totalTime, selfTime)
169 entries[index] = new ChartEntry(depth, totalTime, startTime, selfTime, node);
238 var totalTime = this._millisecondsToString(timelineData.entryTotalTimes[entryIndex]);
240 pushEntryInfoRow(WebInspector.UIString("Total time"), totalTime);
244 pushEntryInfoRow(WebInspector.UIString("Aggregated total time"), Number.secondsToString(node.totalTime / 1000, true));
451 var totalTime = overviewPane._dataProvider.totalTime();
452 this._maximumBoundaries = this._minimumBoundaries + totalTime;
453 this._xScaleFactor = overviewPane._overviewContainer.clientWidth / totalTime;
545 var totalTime = this._dataProvider.totalTime();
546 this._overviewGrid.setWindow((timeLeft - startTime) / totalTime, (timeRight - startTime) / totalTime);
555 var totalTimetotalTime();
557 windowTimeLeft: startTime + this._overviewGrid.windowLeft() * totalTime,
558 windowTimeRight: startTime + this._overviewGrid.windowRight() * totalTime
638 var scaleFactor = width / dataProvider.totalTime();