Searched refs:profileDataGridNode (Results 1 – 4 of 4) sorted by relevance
96 focus: function(profileDataGridNode) argument98 if (!profileDataGridNode)102 profileDataGridNode.savePosition();104 this.children = [profileDataGridNode];105 this.totalTime = profileDataGridNode.totalTime;111 exclude: function(profileDataGridNode) argument113 if (!profileDataGridNode)118 var excludedCallUID = profileDataGridNode.callUID;
49 _takePropertiesFromProfileDataGridNode: function(profileDataGridNode) argument53 this.selfTime = profileDataGridNode.selfTime;54 this.totalTime = profileDataGridNode.totalTime;234 focus: function(profileDataGridNode) argument236 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 …]
256 function matchesQuery(/*ProfileDataGridNode*/ profileDataGridNode) argument258 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 …]
180 insertChild: function(profileDataGridNode, index) argument182 WebInspector.DataGridNode.prototype.insertChild.call(this, profileDataGridNode, index); argument184 this.childrenByCallUID[profileDataGridNode.callUID] = profileDataGridNode;190 removeChild: function(profileDataGridNode) argument192 WebInspector.DataGridNode.prototype.removeChild.call(this, profileDataGridNode); argument194 delete this.childrenByCallUID[profileDataGridNode.callUID];