Home
last modified time | relevance | path

Searched defs:callerCallFrame (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/profiler/
DProfiler.cpp123 void Profiler::willExecute(ExecState* callerCallFrame, JSValue function) in willExecute()
130 void Profiler::willExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNu… in willExecute()
139 void Profiler::didExecute(ExecState* callerCallFrame, JSValue function) in didExecute()
146 void Profiler::didExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNum… in didExecute()
DProfileGenerator.cpp75 void ProfileGenerator::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) in willExecute()
90 void ProfileGenerator::didExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) in didExecute()
DProfileNode.cpp59 ProfileNode::ProfileNode(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileN… in ProfileNode()
76 ProfileNode::ProfileNode(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* nodeToCopy) in ProfileNode()
92 ProfileNode* ProfileNode::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentif… in willExecute()
DProfileNode.h48 …static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdenti… in create()
52 …static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNo… in create()
65 ExecState* callerCallFrame() const { return m_callerCallFrame; } in callerCallFrame() function