Searched refs:headNode (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.h48 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument
50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode));
52 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* node) argument
54 return adoptRef(new ProfileNode(callerCallFrame, headNode, node));
133 ProfileNode(ExecState* callerCallFrame, const CallIdentifier&, ProfileNode* headNode, ProfileNode* parentNode);
134 ProfileNode(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* nodeToCopy);
H A DProfileNode.cpp59 ProfileNode::ProfileNode(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode) argument
62 , m_head(headNode)
76 ProfileNode::ProfileNode(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* nodeToCopy) argument
79 , m_head(headNode)

Completed in 39 milliseconds