Home
last modified time | relevance | path

Searched refs:callIdentifier (Results 1 – 25 of 80) sorted by relevance

1234

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/profiler/
H A DProfileGenerator.cpp78 CString name = callIdentifier.m_name.utf8(); in willExecute()
79 CString url = callIdentifier.m_url.utf8(); in willExecute()
87 m_currentNode = m_currentNode->willExecute(callerCallFrame, callIdentifier); in willExecute()
90 void ProfileGenerator::didExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) in didExecute() argument
93 CString name = callIdentifier.m_name.utf8(); in didExecute()
94 CString url = callIdentifier.m_url.utf8(); in didExecute()
102 if (m_currentNode->callIdentifier() != callIdentifier) { in didExecute()
119 didExecute(m_currentNode->callerCallFrame(), m_currentNode->callIdentifier()); in exceptionUnwind()
156 if (currentNode->callIdentifier().m_name != "profile") in removeProfileStart()
171 if (currentNode->callIdentifier().m_name != "profileEnd") in removeProfileEnd()
[all …]
H A DProfileNode.cpp59 ProfileNode::ProfileNode(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileN… in ProfileNode() argument
61 , m_callIdentifier(callIdentifier) in ProfileNode()
78 , m_callIdentifier(nodeToCopy->callIdentifier()) in ProfileNode()
92 …ileNode* ProfileNode::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier) in willExecute() argument
95 if ((*currentChild)->callIdentifier() == callIdentifier) { in willExecute()
101 …RefPtr<ProfileNode> newChild = ProfileNode::create(callerCallFrame, callIdentifier, m_head ? m_hea… in willExecute()
238 bool ProfileNode::focus(const CallIdentifier& callIdentifier) in focus() argument
243 if (m_callIdentifier != callIdentifier) { in focus()
254 void ProfileNode::exclude(const CallIdentifier& callIdentifier) in exclude() argument
256 if (m_visible && m_callIdentifier == callIdentifier) { in exclude()
H A DProfile.cpp74 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in focus() local
76 processChildren = currentNode->focus(callIdentifier); in focus()
87 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in exclude() local
90 currentNode->exclude(callIdentifier); in exclude()
H A DProfileNode.h48 …rofileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* … in create() argument
50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode)); in create()
57 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
66 const CallIdentifier& callIdentifier() const { return m_callIdentifier; } in callIdentifier() function
H A DProfiler.cpp115 …s, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned curr… in dispatchFunctionToProfiles() argument
119 (profiles[i].get()->*function)(callerOrHandlerCallFrame, callIdentifier); in dispatchFunctionToProfiles()
134 …CallIdentifier callIdentifier = createCallIdentifier(callerCallFrame, JSValue(), sourceURL, starti… in willExecute() local
136 …(callerCallFrame, m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, callerCallFra… in willExecute()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/javascriptcore/JavaScriptCore/profiler/
H A DProfileGenerator.cpp75 void ProfileGenerator::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument
78 CString name = callIdentifier.m_name.UTF8String(); in willExecute()
79 CString url = callIdentifier.m_url.UTF8String(); in willExecute()
87 m_currentNode = m_currentNode->willExecute(callIdentifier); in willExecute()
90 void ProfileGenerator::didExecute(const CallIdentifier& callIdentifier) in didExecute() argument
93 CString name = callIdentifier.m_name.UTF8String(); in didExecute()
94 CString url = callIdentifier.m_url.UTF8String(); in didExecute()
102 if (m_currentNode->callIdentifier() != callIdentifier) { in didExecute()
145 if (currentNode->callIdentifier().m_name != "profile") in removeProfileStart()
160 if (currentNode->callIdentifier().m_name != "profileEnd") in removeProfileEnd()
[all …]
H A DProfileNode.cpp58 ProfileNode::ProfileNode(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* … in ProfileNode() argument
59 : m_callIdentifier(callIdentifier) in ProfileNode()
75 : m_callIdentifier(nodeToCopy->callIdentifier()) in ProfileNode()
89 ProfileNode* ProfileNode::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument
92 if ((*currentChild)->callIdentifier() == callIdentifier) { in willExecute()
98 …RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); … in willExecute()
235 bool ProfileNode::focus(const CallIdentifier& callIdentifier) in focus() argument
240 if (m_callIdentifier != callIdentifier) { in focus()
251 void ProfileNode::exclude(const CallIdentifier& callIdentifier) in exclude() argument
253 if (m_visible && m_callIdentifier == callIdentifier) { in exclude()
H A DProfile.cpp74 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in focus() local
76 processChildren = currentNode->focus(callIdentifier); in focus()
87 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in exclude() local
90 currentNode->exclude(callIdentifier); in exclude()
H A DProfiler.cpp100 …s, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned curr… in dispatchFunctionToProfiles() argument
104 (profiles[i].get()->*function)(callIdentifier); in dispatchFunctionToProfiles()
119 …CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumbe… in willExecute() local
121 …dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, exec… in willExecute()
H A DProfileNode.h46 …static PassRefPtr<ProfileNode> create(const CallIdentifier& callIdentifier, ProfileNode* headNode,… in create() argument
48 return adoptRef(new ProfileNode(callIdentifier, headNode, parentNode)); in create()
55 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
63 const CallIdentifier& callIdentifier() const { return m_callIdentifier; } in callIdentifier() function
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/profiler/
H A DProfileGenerator.cpp75 void ProfileGenerator::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument
78 CString name = callIdentifier.m_name.UTF8String(); in willExecute()
79 CString url = callIdentifier.m_url.UTF8String(); in willExecute()
87 m_currentNode = m_currentNode->willExecute(callIdentifier); in willExecute()
90 void ProfileGenerator::didExecute(const CallIdentifier& callIdentifier) in didExecute() argument
93 CString name = callIdentifier.m_name.UTF8String(); in didExecute()
94 CString url = callIdentifier.m_url.UTF8String(); in didExecute()
102 if (m_currentNode->callIdentifier() != callIdentifier) { in didExecute()
145 if (currentNode->callIdentifier().m_name != "profile") in removeProfileStart()
160 if (currentNode->callIdentifier().m_name != "profileEnd") in removeProfileEnd()
[all …]
H A DProfileNode.cpp58 ProfileNode::ProfileNode(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* … in ProfileNode() argument
59 : m_callIdentifier(callIdentifier) in ProfileNode()
75 : m_callIdentifier(nodeToCopy->callIdentifier()) in ProfileNode()
89 ProfileNode* ProfileNode::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument
92 if ((*currentChild)->callIdentifier() == callIdentifier) { in willExecute()
98 …RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); … in willExecute()
235 bool ProfileNode::focus(const CallIdentifier& callIdentifier) in focus() argument
240 if (m_callIdentifier != callIdentifier) { in focus()
251 void ProfileNode::exclude(const CallIdentifier& callIdentifier) in exclude() argument
253 if (m_visible && m_callIdentifier == callIdentifier) { in exclude()
H A DProfile.cpp74 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in focus() local
76 processChildren = currentNode->focus(callIdentifier); in focus()
87 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in exclude() local
90 currentNode->exclude(callIdentifier); in exclude()
H A DProfiler.cpp100 …s, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned curr… in dispatchFunctionToProfiles() argument
104 (profiles[i].get()->*function)(callIdentifier); in dispatchFunctionToProfiles()
119 …CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumbe… in willExecute() local
121 …dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, exec… in willExecute()
H A DProfileNode.h46 …static PassRefPtr<ProfileNode> create(const CallIdentifier& callIdentifier, ProfileNode* headNode,… in create() argument
48 return adoptRef(new ProfileNode(callIdentifier, headNode, parentNode)); in create()
55 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
63 const CallIdentifier& callIdentifier() const { return m_callIdentifier; } in callIdentifier() function
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/profiler/
H A DProfileGenerator.cpp75 void ProfileGenerator::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument
78 CString name = callIdentifier.m_name.UTF8String(); in willExecute()
79 CString url = callIdentifier.m_url.UTF8String(); in willExecute()
87 m_currentNode = m_currentNode->willExecute(callIdentifier); in willExecute()
90 void ProfileGenerator::didExecute(const CallIdentifier& callIdentifier) in didExecute() argument
93 CString name = callIdentifier.m_name.UTF8String(); in didExecute()
94 CString url = callIdentifier.m_url.UTF8String(); in didExecute()
102 if (m_currentNode->callIdentifier() != callIdentifier) { in didExecute()
145 if (currentNode->callIdentifier().m_name != "profile") in removeProfileStart()
160 if (currentNode->callIdentifier().m_name != "profileEnd") in removeProfileEnd()
[all …]
H A DProfileNode.cpp58 ProfileNode::ProfileNode(const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* … in ProfileNode() argument
59 : m_callIdentifier(callIdentifier) in ProfileNode()
75 : m_callIdentifier(nodeToCopy->callIdentifier()) in ProfileNode()
89 ProfileNode* ProfileNode::willExecute(const CallIdentifier& callIdentifier) in willExecute() argument
92 if ((*currentChild)->callIdentifier() == callIdentifier) { in willExecute()
98 …RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); … in willExecute()
235 bool ProfileNode::focus(const CallIdentifier& callIdentifier) in focus() argument
240 if (m_callIdentifier != callIdentifier) { in focus()
251 void ProfileNode::exclude(const CallIdentifier& callIdentifier) in exclude() argument
253 if (m_visible && m_callIdentifier == callIdentifier) { in exclude()
H A DProfile.cpp74 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in focus() local
76 processChildren = currentNode->focus(callIdentifier); in focus()
87 const CallIdentifier& callIdentifier = profileNode->callIdentifier(); in exclude() local
90 currentNode->exclude(callIdentifier); in exclude()
H A DProfiler.cpp100 …s, ProfileGenerator::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned curr… in dispatchFunctionToProfiles() argument
104 (profiles[i].get()->*function)(callIdentifier); in dispatchFunctionToProfiles()
119 …CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumbe… in willExecute() local
121 …dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::willExecute, callIdentifier, exec… in willExecute()
H A DProfileNode.h46 …static PassRefPtr<ProfileNode> create(const CallIdentifier& callIdentifier, ProfileNode* headNode,… in create() argument
48 return adoptRef(new ProfileNode(callIdentifier, headNode, parentNode)); in create()
55 bool operator==(ProfileNode* node) { return m_callIdentifier == node->callIdentifier(); }
63 const CallIdentifier& callIdentifier() const { return m_callIdentifier; } in callIdentifier() function
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/asn1/test/asn1_SUITE_data/
H A DH323-MESSAGES.asn69 callIdentifier CallIdentifier,
82 callIdentifier CallIdentifier,
96 callIdentifier CallIdentifier,
107 callIdentifier CallIdentifier
115 callIdentifier CallIdentifier
167 callIdentifier CallIdentifier,
184 callIdentifier CallIdentifier,
218 callIdentifier CallIdentifier,
919 callIdentifier CallIdentifier,
1029 callIdentifier CallIdentifier,
[all …]
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/asn1/test/asn1_SUITE_data/
H A DH323-MESSAGES.asn69 callIdentifier CallIdentifier,
82 callIdentifier CallIdentifier,
96 callIdentifier CallIdentifier,
107 callIdentifier CallIdentifier
115 callIdentifier CallIdentifier
167 callIdentifier CallIdentifier,
184 callIdentifier CallIdentifier,
218 callIdentifier CallIdentifier,
919 callIdentifier CallIdentifier,
1029 callIdentifier CallIdentifier,
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/asn1/test/asn1_SUITE_data/
H A DH323-MESSAGES.asn69 callIdentifier CallIdentifier,
82 callIdentifier CallIdentifier,
96 callIdentifier CallIdentifier,
107 callIdentifier CallIdentifier
115 callIdentifier CallIdentifier
167 callIdentifier CallIdentifier,
184 callIdentifier CallIdentifier,
218 callIdentifier CallIdentifier,
919 callIdentifier CallIdentifier,
1029 callIdentifier CallIdentifier,
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/asn1/test/asn1_SUITE_data/
H A DH323-MESSAGES.asn69 callIdentifier CallIdentifier,
82 callIdentifier CallIdentifier,
96 callIdentifier CallIdentifier,
107 callIdentifier CallIdentifier
115 callIdentifier CallIdentifier
167 callIdentifier CallIdentifier,
184 callIdentifier CallIdentifier,
218 callIdentifier CallIdentifier,
919 callIdentifier CallIdentifier,
1029 callIdentifier CallIdentifier,
[all …]
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/asn1/test/asn1_SUITE_data/
H A DH323-MESSAGES.asn69 callIdentifier CallIdentifier,
82 callIdentifier CallIdentifier,
96 callIdentifier CallIdentifier,
107 callIdentifier CallIdentifier
115 callIdentifier CallIdentifier
167 callIdentifier CallIdentifier,
184 callIdentifier CallIdentifier,
218 callIdentifier CallIdentifier,
919 callIdentifier CallIdentifier,
1029 callIdentifier CallIdentifier,
[all …]

1234