Home
last modified time | relevance | path

Searched refs:dataGrid (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
DDetailedHeapshotGridNodes.js50 …WebInspector.PleaseWaitMessage.prototype.startAction(this.dataGrid.element, doPopulate.bind(this));
141 this.dataGrid.dispatchEventToListeners("sorting complete");
147 this.dataGrid.dispatchEventToListeners("start sorting");
148 … WebInspector.PleaseWaitMessage.prototype.startAction(this.dataGrid.element, doSort.bind(this));
191 cell.style.setProperty("padding-left", (this.depth * this.dataGrid.indentWidth) + "px");
197 return this._count / this.dataGrid.snapshot.nodeCount * 100.0;
231 var view = this.dataGrid.snapshotView;
240 return this._retainedSize / this.dataGrid.snapshot.totalSize * 100.0;
245 return this._shallowSize / this.dataGrid.snapshot.totalSize * 100.0;
272 return new WebInspector.HeapSnapshotObjectNode(this.dataGrid, item);
[all …]
DProfileView.js49 this.dataGrid = new WebInspector.DataGrid(columns);
50 this.dataGrid.addEventListener("sorting changed", this._sortData, this);
51 this.dataGrid.element.addEventListener("mousedown", this._mouseDownInDataGrid.bind(this), true);
52 this.element.appendChild(this.dataGrid.element);
166 this.dataGrid.updateWidths();
177 if (this.dataGrid)
178 this.dataGrid.updateWidths();
183 …var selectedProfileNode = this.dataGrid.selectedNode ? this.dataGrid.selectedNode.profileNode : nu…
185 this.dataGrid.removeChildren();
191 this.dataGrid.appendChild(children[index]);
[all …]
DDatabaseTableView.js61 var dataGrid = WebInspector.panels.resources.dataGridForResult(columnNames, values);
62 if (!dataGrid) {
70 this.element.appendChild(dataGrid.element);
71 dataGrid.autoSizeColumns(5);
DDataGrid.js151 this.dataGrid = this;
588 child.dataGrid = this.dataGrid;
598 current.dataGrid = this.dataGrid;
627 child.dataGrid = null;
643 child.dataGrid = null;
670 child.dataGrid = null;
891 if (this.dataGrid._editCallback) {
897 if (this.dataGrid._deleteCallback && gridNode !== this.creationNode)
995 this.dataGrid = null;
1010 if (!this.dataGrid)
[all …]
DDatabaseQueryView.js142 var dataGrid = WebInspector.panels.resources.dataGridForResult(columnNames, values);
145 if (dataGrid) {
146 dataGrid.element.addStyleClass("inline");
147 this._appendQueryResult(trimmedQuery, dataGrid.element);
148 dataGrid.autoSizeColumns(5);
DDOMStorageItemsView.js109 …var dataGrid = new WebInspector.DataGrid(columns, this._editingCallback.bind(this), this._deleteCa…
112 dataGrid.appendChild(nodes[i]);
113 dataGrid.addCreationNode(false);
116 return dataGrid;
DDetailedHeapshotView.js447 this.dataGrid = this.constructorsDataGrid;
495 this.dataGrid.setDataSource(this, this.profileWrapper);
555 this.dataGrid.updateWidths();
567 if (this.dataGrid)
568 this.dataGrid.updateWidths();
633 var current = this.dataGrid.children[0];
707 var child = this.dataGrid.children[0];
783 …d.setDataSource(this, nodeItem.isDeletedNode ? nodeItem.dataGrid.baseSnapshot : nodeItem.dataGrid.…
797 this.dataGrid = view.grid;
802 if (!this.dataGrid.snapshotView) {
[all …]
DHeapSnapshotView.js82 this.dataGrid = new WebInspector.DataGrid(columns);
83 this.dataGrid.addEventListener("sorting changed", this._sortData, this);
84 this.dataGrid.element.addEventListener("mousedown", this._mouseDownInDataGrid.bind(this), true);
85 this.element.appendChild(this.dataGrid.element);
141 this.dataGrid.updateWidths();
152 if (this.dataGrid)
153 this.dataGrid.updateWidths();
158 this.dataGrid.removeChildren();
163 this.dataGrid.appendChild(children[index]);
285 var child = this.dataGrid.children[0];
[all …]
DShowMoreDataGridNode.js61 cell.style.setProperty("padding-left", (this.depth * this.dataGrid.indentWidth) + "px");
67 var columns = this.dataGrid.columns;
DResourcesPanel.js594 var dataGrid = new WebInspector.DataGrid(columns);
597 dataGrid.appendChild(nodes[i]);
599 dataGrid.addEventListener("sorting changed", this._sortDataGrid.bind(this, dataGrid), this);
600 return dataGrid;
603 _sortDataGrid: function(dataGrid) argument
605 var nodes = dataGrid.children.slice();
606 var sortColumnIdentifier = dataGrid.sortColumnIdentifier;
607 var sortDirection = dataGrid.sortOrder === "ascending" ? 1 : -1;
633 dataGrid.removeChildren();
635 dataGrid.appendChild(nodes[i]);
DProfileDataGridTree.js207 return this.parent !== this.dataGrid ? this.parent : this.tree;
/external/webkit/Source/WebCore/html/
DHTMLDataGridColElement.cpp69 if (dataGrid()) // We're connected to a datagrid already. in insertedIntoTree()
72 if (dataGrid() && dataGrid()->dataSource()->isDOMDataGridDataSource()) { in insertedIntoTree()
81 if (dataGrid() && dataGrid()->dataSource()->isDOMDataGridDataSource()) { in removedFromTree()
84 dataGrid()->columns()->remove(column()); in removedFromTree()
DDataGridColumnList.cpp38 DataGridColumnList::DataGridColumnList(HTMLDataGridElement* dataGrid) in DataGridColumnList() argument
39 : m_dataGrid(dataGrid) in DataGridColumnList()
61 if (dataGrid() && dataGrid()->renderer()) in setDataGridNeedsLayout()
62 dataGrid()->renderer()->setNeedsLayout(true); in setDataGridNeedsLayout()
DHTMLDataGridColElement.h67 HTMLDataGridElement* dataGrid() const { return m_dataGrid; } in dataGrid() function
DDataGridColumnList.h42 HTMLDataGridElement* dataGrid() const { return m_dataGrid; } in dataGrid() function
/external/webkit/Source/WebKit/chromium/src/js/
DTests.js284 var node = panel.visibleView.dataGrid.children[0];
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2991665 (WebCore::DataGridColumnList::dataGrid):
91673 (WebCore::HTMLDataGridColElement::dataGrid):