Home | History | Annotate | Download | only in profiler

Lines Matching defs:ProfileNode

183 class ProfileNode {
185 inline ProfileNode(ProfileTree* tree, CodeEntry* entry);
187 ProfileNode* FindChild(CodeEntry* entry);
188 ProfileNode* FindOrAddChild(CodeEntry* entry);
195 const List<ProfileNode*>* children() const { return &children_list_; }
222 // Mapping from CodeEntry* to ProfileNode*
224 List<ProfileNode*> children_list_;
230 DISALLOW_COPY_AND_ASSIGN(ProfileNode);
239 ProfileNode* AddPathFromEnd(
243 ProfileNode* root() const { return root_; }
245 unsigned GetFunctionId(const ProfileNode* node);
259 ProfileNode* root_;
282 ProfileNode* sample(int index) const { return samples_.at(index); }
300 List<ProfileNode*> samples_;