Home | History | Annotate | Download | only in front-end

Lines Matching refs:aggregate

422 WebInspector.HeapSnapshotConstructorNode = function(tree, className, aggregate)
424 WebInspector.HeapSnapshotGridNode.call(this, tree, aggregate.count > 0);
426 this._count = aggregate.count;
427 this._shallowSize = aggregate.self;
428 this._retainedSize = aggregate.maxRet;
429 this._provider = this._createNodesProvider(tree.snapshot, aggregate.type, className);
515 WebInspector.HeapSnapshotDiffNode = function(tree, className, baseAggregate, aggregate)
520 this._indexes = aggregate ? aggregate.idxs : [];
521 this._provider = this._createNodesProvider(tree.baseSnapshot, tree.snapshot, aggregate ? aggregate.type : baseAggregate.type, className);