Home
last modified time | relevance | path

Searched refs:profileDataGridNode (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DTopDownProfileDataGridTree.js96 focus: function(profileDataGridNode) argument
98 if (!profileDataGridNode)
102 profileDataGridNode.savePosition();
104 this.children = [profileDataGridNode];
105 this.totalTime = profileDataGridNode.totalTime;
111 exclude: function(profileDataGridNode) argument
113 if (!profileDataGridNode)
118 var excludedCallUID = profileDataGridNode.callUID;
DBottomUpProfileDataGridTree.js49 _takePropertiesFromProfileDataGridNode: function(profileDataGridNode) argument
53 this.selfTime = profileDataGridNode.selfTime;
54 this.totalTime = profileDataGridNode.totalTime;
234 focus: function(profileDataGridNode) argument
236 if (!profileDataGridNode)
241 var currentNode = profileDataGridNode;
242 var focusNode = profileDataGridNode;
245 currentNode._takePropertiesFromProfileDataGridNode(profileDataGridNode);
255 this.totalTime = profileDataGridNode.totalTime;
261 exclude: function(profileDataGridNode) argument
[all …]
DCPUProfileView.js256 function matchesQuery(/*ProfileDataGridNode*/ profileDataGridNode) argument
258 delete profileDataGridNode._searchMatchedSelfColumn;
259 delete profileDataGridNode._searchMatchedTotalColumn;
260 delete profileDataGridNode._searchMatchedFunctionColumn;
264 if (profileDataGridNode.selfPercent < queryNumber)
265 profileDataGridNode._searchMatchedSelfColumn = true;
266 if (profileDataGridNode.totalPercent < queryNumber)
267 profileDataGridNode._searchMatchedTotalColumn = true;
269 if (profileDataGridNode.selfPercent > queryNumber)
270 profileDataGridNode._searchMatchedSelfColumn = true;
[all …]
DProfileDataGridTree.js180 insertChild: function(profileDataGridNode, index) argument
182 WebInspector.DataGridNode.prototype.insertChild.call(this, profileDataGridNode, index); argument
184 this.childrenByCallUID[profileDataGridNode.callUID] = profileDataGridNode;
190 removeChild: function(profileDataGridNode) argument
192 WebInspector.DataGridNode.prototype.removeChild.call(this, profileDataGridNode); argument
194 delete this.childrenByCallUID[profileDataGridNode.callUID];