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

  /external/v8/src/
profile-generator-inl.h 74 ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry)
profile-generator.h 134 class ProfileNode {
136 INLINE(ProfileNode(ProfileTree* tree, CodeEntry* entry));
138 ProfileNode* FindChild(CodeEntry* entry);
139 ProfileNode* FindOrAddChild(CodeEntry* entry);
147 INLINE(const List<ProfileNode*>* children() const) { return &children_list_; }
167 // Mapping from CodeEntry* to ProfileNode*
169 List<ProfileNode*> children_list_;
171 DISALLOW_COPY_AND_ASSIGN(ProfileNode);
188 ProfileNode* root() const { return root_; }
201 ProfileNode* root_
    [all...]
  /sdk/traceview/src/com/android/traceview/
ProfileNode.java 19 public class ProfileNode {
27 public ProfileNode(String label, MethodData methodData,
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileNode.cpp 30 #include "ProfileNode.h"
59 ProfileNode::ProfileNode(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
76 ProfileNode::ProfileNode(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* nodeToCopy)
92 ProfileNode* ProfileNode::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier
    [all...]
ProfileNode.h 41 class ProfileNode;
43 typedef Vector<RefPtr<ProfileNode> >::const_iterator StackIterator;
46 class ProfileNode : public RefCounted<ProfileNode> {
48 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, const CallIdentifier& callIdentifier, ProfileNode* headNode, ProfileNode* parentNode)
50 return adoptRef(new ProfileNode(callerCallFrame, callIdentifier, headNode, parentNode));
52 static PassRefPtr<ProfileNode> create(ExecState* callerCallFrame, ProfileNode* headNode, ProfileNode* node
    [all...]

Completed in 61 milliseconds