Home | History | Annotate | Download | only in profiler

Lines Matching refs:callIdentifier

58 ProfileNode::ProfileNode(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
59 : m_callIdentifier(callIdentifier)
75 : m_callIdentifier(nodeToCopy->callIdentifier())
89 ProfileNode* ProfileNode::willExecute(const CallIdentifier& callIdentifier)
92 if ((*currentChild)->callIdentifier() == callIdentifier) {
98 RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head.
235 bool ProfileNode::focus(const CallIdentifier& callIdentifier)
240 if (m_callIdentifier != callIdentifier) {
251 void ProfileNode::exclude(const CallIdentifier& callIdentifier)
253 if (m_visible && m_callIdentifier == callIdentifier) {