Home
last modified time | relevance | path

Searched refs:retainerIndex (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
DHeapSnapshot.js285 WebInspector.HeapSnapshotRetainerEdge = function(snapshot, retainerIndex) argument
288 this.setRetainerIndex(retainerIndex);
297 return new WebInspector.HeapSnapshotRetainerEdge(this._snapshot, this.retainerIndex());
335 retainerIndex: function() method in WebInspector.HeapSnapshotRetainerEdge
343 setRetainerIndex: function(retainerIndex) argument
345 if (retainerIndex === this._retainerIndex)
347 this._retainerIndex = retainerIndex;
348 this._globalEdgeIndex = this._snapshot._retainingEdges[retainerIndex];
349 this._retainingNodeIndex = this._snapshot._retainingNodes[retainerIndex];
420 var retainerIndex = snapshot._firstRetainerIndex[retainedNodeOrdinal];
[all …]
DJSHeapSnapshot.js77 createRetainingEdge: function(retainerIndex) argument
79 return new WebInspector.JSHeapSnapshotRetainerEdge(this, retainerIndex);
767 WebInspector.JSHeapSnapshotRetainerEdge = function(snapshot, retainerIndex) argument
769 WebInspector.HeapSnapshotRetainerEdge.call(this, snapshot, retainerIndex);
779 return new WebInspector.JSHeapSnapshotRetainerEdge(snapshot, this.retainerIndex());