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

  /external/webkit/Source/WebCore/inspector/front-end/
ProfileDataGridTree.js 26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren)
48 WebInspector.ProfileDataGridNode.prototype = {
157 insertChild: function(/*ProfileDataGridNode*/ profileDataGridNode, index)
159 WebInspector.DataGridNode.prototype.insertChild.call(this, profileDataGridNode, index);
161 this.childrenByCallUID[profileDataGridNode.callUID] = profileDataGridNode;
164 removeChild: function(/*ProfileDataGridNode*/ profileDataGridNode)
166 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...]
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
WebInspectorShims.js 53 var originalGetter = WebInspector.ProfileDataGridNode.prototype.__lookupGetter__("data");
54 WebInspector.ProfileDataGridNode.prototype.__defineGetter__("data", function() {
57 // ProfileDataGridNode formats values as milliseconds, but we are instead measuring bytes.

Completed in 2364 milliseconds