Lines Matching defs:AllocationTraceNode
38 class AllocationTraceNode {
40 AllocationTraceNode(AllocationTraceTree* tree,
42 ~AllocationTraceNode();
43 AllocationTraceNode* FindChild(SnapshotObjectId shared_function_info_id);
44 AllocationTraceNode* FindOrAddChild(SnapshotObjectId shared_function_info_id);
51 Vector<AllocationTraceNode*> children() const { return children_.ToVector(); }
61 List<AllocationTraceNode*> children_;
63 DISALLOW_COPY_AND_ASSIGN(AllocationTraceNode);
71 AllocationTraceNode* AddPathFromEnd(const Vector<SnapshotObjectId>& path);
72 AllocationTraceNode* root() { return &root_; }
78 AllocationTraceNode root_;