Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DBottomUpProfileDataGridTree.js38 WebInspector.BottomUpProfileDataGridNode = function(profileNode, owningTree) argument
40 …WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, this._willHaveChildren(profil…
93 this.hasChildren = this._willHaveChildren(this.profileNode);
150 _willHaveChildren: function(profileNode) argument
154 return !!(profileNode.parent && profileNode.parent.parent);
183 var profileNode = profileNodes[index];
185 if (!profileNode.UID)
186 profileNode.UID = ++profileNodeUIDs;
188 if (profileNode.head && profileNode !== profileNode.head) {
190 var visitedNodes = visitedProfileNodesForCallUID[profileNode.callUID];
[all …]
DProfileDataGridTree.js33 WebInspector.ProfileDataGridNode = function(profileNode, owningTree, hasChildren) argument
35 this.profileNode = profileNode;
44 this.callUID = profileNode.callUID;
45 this.selfTime = profileNode.selfTime;
46 this.totalTime = profileNode.totalTime;
47 this.functionName = profileNode.functionName;
48 …this._deoptReason = (!profileNode.deoptReason || profileNode.deoptReason === "no reason") ? "" : p…
49 this.url = profileNode.url;
106 if (this.profileNode._searchMatchedFunctionColumn)
109 if (this.profileNode.scriptId !== "0") {
[all …]
DTopDownProfileDataGridTree.js32 WebInspector.TopDownProfileDataGridNode = function(profileNode, owningTree) argument
34 var hasChildren = !!(profileNode.children && profileNode.children.length);
36 WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, hasChildren);
38 this._remainingChildren = profileNode.children;
DCPUProfileView.js115 while (current && current.profileNode !== event.data)
173 …r selectedProfileNode = this.dataGrid.selectedNode ? this.dataGrid.selectedNode.profileNode : null;
206 var profileNode = this._searchResults[i].profileNode;
208 delete profileNode._searchMatchedSelfColumn;
209 delete profileNode._searchMatchedTotalColumn;
210 delete profileNode._searchMatchedFunctionColumn;
212 profileNode.refresh();
320 this._searchResults.push({ profileNode: current }); property
383 var profileNode = searchResult.profileNode;
384 profileNode.revealAndSelect();