Home | History | Annotate | Download | only in profiler

Lines Matching defs:callIdentifier

32 #include "CallIdentifier.h"
48 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode));
57 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
59 ProfileNode* willExecute(ExecState* callerCallFrame, const CallIdentifier&);
64 // CallIdentifier members
66 const CallIdentifier& callIdentifier() const { return m_callIdentifier; }
120 bool focus(const CallIdentifier&);
121 void exclude(const CallIdentifier&);
133 ProfileNode(ExecState* callerCallFrame, const CallIdentifier&, ProfileNode* headNode, ProfileNode* parentNode);
153 CallIdentifier m_callIdentifier;