Home | History | Annotate | Download | only in js

Lines Matching full:clusters

847         snapshotEntry = { cons: baseEntry.cons, count: 0, clusters: {} };
850 this.retainers = this._calculateRetainers(this.snapshotView.profile, snapshotEntry.clusters);
853 baseEntry = { count: 0, clusters: {} };
856 this.baseRetainers = this._calculateRetainers(this.snapshotView.baseSnapshot, baseEntry.clusters);
875 _calculateRetainers: function(snapshot, clusters) {
877 if (this.isEmptySet(clusters)) {
881 // In case when an entry is retained by clusters, we need to gather up the list
892 clusters) {
893 if (clusterName in snapshot.clusters) {
894 var clusterRetainers = snapshot.clusters[clusterName].retainers;
898 retainers[clusterRetainer] = { cons: clusterRetainerEntry.cons, count: 0, clusters: {} };
900 for (var clusterRetainerCluster in clusterRetainerEntry.clusters)
901 retainers[clusterRetainer].clusters[clusterRetainerCluster] = true;