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

  /external/chromium_org/v8/src/
allocation-tracker.cc 38 AllocationTraceNode::AllocationTraceNode(
48 AllocationTraceNode::~AllocationTraceNode() {
52 AllocationTraceNode* AllocationTraceNode::FindChild(SnapshotObjectId id) {
54 AllocationTraceNode* node = children_[i];
61 AllocationTraceNode* AllocationTraceNode::FindOrAddChild(SnapshotObjectId id) {
62 AllocationTraceNode* child = FindChild(id)
    [all...]
allocation-tracker.h 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_;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
AllocationProfile.js 96 var result = new WebInspector.AllocationTraceNode(
197 WebInspector.AllocationTraceNode = function(id, functionInfo, count, size, parent)
223 * @param {!WebInspector.AllocationTraceNode} traceNode
224 * @return {!WebInspector.AllocationTraceNode}

Completed in 36 milliseconds