Lines Matching refs:ProfileNode
109 class ProfileNode {
111 inline ProfileNode(ProfileTree* tree, CodeEntry* entry);
113 ProfileNode* FindChild(CodeEntry* entry);
114 ProfileNode* FindOrAddChild(CodeEntry* entry);
120 const List<ProfileNode*>* children() const { return &children_list_; } in children()
140 List<ProfileNode*> children_list_;
143 DISALLOW_COPY_AND_ASSIGN(ProfileNode);
152 ProfileNode* AddPathFromEnd(const Vector<CodeEntry*>& path);
154 ProfileNode* root() const { return root_; } in root()
167 ProfileNode* root_;
185 ProfileNode* sample(int index) const { return samples_.at(index); } in sample()
202 List<ProfileNode*> samples_;