Home | History | Annotate | Download | only in profiler

Lines Matching refs:dataGrid

61     this._containmentDataGrid.addEventListener(WebInspector.DataGrid.Events.SelectedNode, this._selectionChanged, this);
70 this._constructorsDataGrid.addEventListener(WebInspector.DataGrid.Events.SelectedNode, this._selectionChanged, this);
77 this._diffDataGrid.addEventListener(WebInspector.DataGrid.Events.SelectedNode, this._selectionChanged, this);
83 this._allocationDataGrid.addEventListener(WebInspector.DataGrid.Events.SelectedNode, this._onSelectAllocationNode, this);
124 this._retainmentDataGrid.addEventListener(WebInspector.DataGrid.Events.SelectedNode, this._inspectedObjectChanged, this);
203 * @return {?WebInspector.DataGrid}
258 * @return {?WebInspector.DataGrid}
303 * @return {?WebInspector.DataGrid}
346 * @return {?WebInspector.DataGrid}
405 * @return {?WebInspector.DataGrid}
437 * @return {?WebInspector.DataGrid}
714 var dataGrid = /** @type {!WebInspector.HeapSnapshotDiffDataGrid} */ (this._dataGrid);
716 if (dataGrid.snapshot)
717 this._baseProfile.load(dataGrid.setBaseDataSource.bind(dataGrid));
829 var dataGrid = event.data;
830 dataGrid.removeEventListener(WebInspector.HeapSnapshotSortableDataGrid.Events.ContentShown, dataGridContentShown, this);
831 if (dataGrid === this._dataGrid)
842 var dataGrid = this._dataGrid;
843 if (!dataGrid || dataGrid.snapshot)
853 if (this._dataGrid !== dataGrid)
855 if (dataGrid.snapshot !== snapshotProxy)
856 dataGrid.setDataSource(snapshotProxy);
857 if (dataGrid === this._diffDataGrid) {