Home | History | Annotate | Download | only in resources

Lines Matching refs:tableName

479      * @param {string=} tableName
481 _showDatabase: function(database, tableName)
487 if (tableName) {
493 view = tableViews[tableName];
495 view = new WebInspector.DatabaseTableView(database, tableName);
496 tableViews[tableName] = view;
633 for (var tableName in tableViews) {
634 if (!(tableName in tableNamesHash)) {
635 if (self.visibleView === tableViews[tableName])
637 delete tableViews[tableName];
1358 WebInspector.DatabaseTableTreeElement = function(storagePanel, database, tableName)
1360 WebInspector.BaseStorageTreeElement.call(this, storagePanel, null, tableName, ["database-storage-tree-item"]);
1362 this._tableName = tableName;