Home
last modified time | relevance | path

Searched refs:profileView (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/inspector/front-end/
DProfileDataGridTree.js26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren) argument
28 this.profileView = profileView;
61 if (this.profileView.showSelfTimeAsPercent)
66 if (this.profileView.showTotalTimeAsPercent)
71 if (this.profileView.showAverageTimeAsPercent)
121 this.profileView._dataGridNodeSelected(this);
127 this.profileView._dataGridNodeDeselected(this);
307 WebInspector.ProfileDataGridTree = function(profileView, profileNode) argument
312 this.profileView = profileView;
DTopDownProfileDataGridTree.js26 WebInspector.TopDownProfileDataGridNode = function(/*ProfileView*/ profileView, /*ProfileNode*/ pro… argument
30 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren);
42 …this.appendChild(new WebInspector.TopDownProfileDataGridNode(this.profileView, children[i], this.t…
69 WebInspector.TopDownProfileDataGridTree = function(/*ProfileView*/ profileView, /*ProfileNode*/ pro… argument
71 WebInspector.ProfileDataGridTree.call(this, profileView, profileNode);
DBottomUpProfileDataGridTree.js32 WebInspector.BottomUpProfileDataGridNode = function(/*ProfileView*/ profileView, /*ProfileNode*/ pr… argument
34 …WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, this._willHaveCh…
115 … var child = new WebInspector.BottomUpProfileDataGridNode(this.profileView, ancestor, this.tree);