HomeSort by relevance Sort by last modified time
    Searched defs:ProfileDataGridNode (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/inspector/front-end/
ProfileDataGridTree.js 26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren)
48 WebInspector.ProfileDataGridNode.prototype = {
166 insertChild: function(/*ProfileDataGridNode*/ profileDataGridNode, index)
168 WebInspector.DataGridNode.prototype.insertChild.call(this, profileDataGridNode, index);
170 this.childrenByCallUID[profileDataGridNode.callUID] = profileDataGridNode;
173 removeChild: function(/*ProfileDataGridNode*/ profileDataGridNode)
175 WebInspector.DataGridNode.prototype.removeChild.call(this, profileDataGridNode);
    [all...]
BottomUpProfileDataGridTree.js 34 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, this._willHaveChildren(profileNode));
40 _takePropertiesFromProfileDataGridNode: function(/*ProfileDataGridNode*/ profileDataGridNode)
44 this.selfTime = profileDataGridNode.selfTime;
45 this.totalTime = profileDataGridNode.totalTime;
46 this.numberOfCalls = profileDataGridNode.numberOfCalls;
50 _keepOnlyChild: function(/*ProfileDataGridNode*/ child)
79 WebInspector.ProfileDataGridNode.prototype._restore();
85 _merge: function(/*ProfileDataGridNode*/ child, /*Boolean*/ shouldAbsorb)
89 WebInspector.ProfileDataGridNode.prototype._merge.call(this, child, shouldAbsorb)
    [all...]

Completed in 52 milliseconds