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

  /external/chromium_org/v8/src/
allocation-tracker.h 17 class AllocationTraceNode {
19 AllocationTraceNode(AllocationTraceTree* tree,
21 ~AllocationTraceNode();
22 AllocationTraceNode* FindChild(unsigned function_info_index);
23 AllocationTraceNode* FindOrAddChild(unsigned function_info_index);
30 Vector<AllocationTraceNode*> children() const { return children_.ToVector(); }
40 List<AllocationTraceNode*> children_;
42 DISALLOW_COPY_AND_ASSIGN(AllocationTraceNode);
50 AllocationTraceNode* AddPathFromEnd(const Vector<unsigned>& path);
51 AllocationTraceNode* root() { return &root_;
    [all...]
allocation-tracker.cc 14 AllocationTraceNode::AllocationTraceNode(
24 AllocationTraceNode::~AllocationTraceNode() {
29 AllocationTraceNode* AllocationTraceNode::FindChild(
32 AllocationTraceNode* node = children_[i];
39 AllocationTraceNode* AllocationTraceNode::FindOrAddChild(
41 AllocationTraceNode* child = FindChild(function_info_index)
    [all...]
heap-snapshot-generator.h 14 class AllocationTraceNode;
591 void SerializeTraceNode(AllocationTraceNode* node);
heap-snapshot-generator.cc     [all...]
  /external/chromium_org/v8/test/cctest/
test-heap-profiler.cc 43 using i::AllocationTraceNode;
    [all...]

Completed in 3803 milliseconds