Lines Matching refs:ProfileNode
126 class ProfileNode {
128 INLINE(ProfileNode(ProfileTree* tree, CodeEntry* entry));
130 ProfileNode* FindChild(CodeEntry* entry);
131 ProfileNode* FindOrAddChild(CodeEntry* entry);
139 INLINE(const List<ProfileNode*>* children() const) { return &children_list_; }
160 // Mapping from CodeEntry* to ProfileNode*
162 List<ProfileNode*> children_list_;
165 DISALLOW_COPY_AND_ASSIGN(ProfileNode);
174 ProfileNode* AddPathFromEnd(const Vector<CodeEntry*>& path);
181 ProfileNode* root() const { return root_; }
197 ProfileNode* root_;
217 ProfileNode* sample(int index) const { return samples_.at(index); }
233 List<ProfileNode*> samples_;