HomeSort by relevance Sort by last modified time
    Searched defs:callIdentifier (Results 1 - 3 of 3) sorted by null

  /external/webkit/JavaScriptCore/profiler/
Profile.cpp 45 m_head = ProfileNode::create(CallIdentifier("Thread_1", UString(), 0), 0, 0);
74 const CallIdentifier& callIdentifier = profileNode->callIdentifier();
76 processChildren = currentNode->focus(callIdentifier);
87 const CallIdentifier& callIdentifier = profileNode->callIdentifier();
90 currentNode->exclude(callIdentifier);
Profiler.cpp 49 static CallIdentifier createCallIdentifierFromFunctionImp(ExecState*, JSFunction*);
100 static inline void dispatchFunctionToProfiles(const Vector<RefPtr<ProfileGenerator> >& profiles, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned currentProfileTargetGroup)
104 (profiles[i].get()->*function)(callIdentifier);
119 CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumber);
121 dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, exec->lexicalGlobalObject()->profileGroup());
138 CallIdentifier Profiler::createCallIdentifier(ExecState* exec, JSValue functionValue, const UString& defaultSourceURL, int defaultLineNumber)
141 return CallIdentifier(GlobalCodeExecution, defaultSourceURL, defaultLineNumber);
143 return CallIdentifier("(unknown)", defaultSourceURL, defaultLineNumber)
    [all...]
ProfileNode.h 32 #include "CallIdentifier.h"
46 static PassRefPtr<ProfileNode> create(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
48 return adoptRef(new ProfileNode(callIdentifier, headNode, parentNode));
55 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
57 ProfileNode* willExecute(const CallIdentifier&);
62 // CallIdentifier members
63 const CallIdentifier& callIdentifier() const { return m_callIdentifier; }
117 bool focus(const CallIdentifier&)
    [all...]

Completed in 45 milliseconds