Searched refs:recordsInWindow (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DTimelinePanel.js838 var recordsInWindow = this._presentationModel.filteredRecords();
839 var index = recordsInWindow.indexOf(recordToReveal);
852 var recordsInWindow = this._presentationModel.filteredRecords();
861 var startIndex = Math.max(0, Math.min(Math.floor(visibleTop / rowHeight) - this._headerLineCount, recordsInWindow.length - 1));
862 var endIndex = Math.min(recordsInWindow.length, Math.ceil(visibleBottom / rowHeight));
864 if (this._automaticallySizeWindow && recordsInWindow.length > lastVisibleLine) {
867 var windowStartTime = startIndex ? recordsInWindow[startIndex].startTime : this._model.minimumRecordTime();
868 this._overviewPane.setWindowTimes(windowStartTime, recordsInWindow[Math.max(0, lastVisibleLine - 1)].endTime);
869 recordsInWindow = this._presentationModel.filteredRecords();
870 endIndex = Math.min(recordsInWindow
[all...]
H A DTimelinePresentationModel.js503 var recordsInWindow = []; variable
516 recordsInWindow.push(record);
525 windowLengthBeforeChildrenTraversal: recordsInWindow.length});
529 entry.parentRecord._visibleChildrenCount = recordsInWindow.length - entry.windowLengthBeforeChildrenTraversal;
533 this._filteredRecords = recordsInWindow;
534 return recordsInWindow;

Completed in 146 milliseconds