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

  /external/v8/src/
heap-snapshot-generator-inl.h 14 HeapEntry* HeapGraphEdge::from() const {
19 HeapSnapshot* HeapGraphEdge::snapshot() const {
37 HeapGraphEdge** HeapEntry::children_arr() {
heap-snapshot-generator.h 19 class HeapGraphEdge BASE_EMBEDDED {
22 kContextVariable = v8::HeapGraphEdge::kContextVariable,
23 kElement = v8::HeapGraphEdge::kElement,
24 kProperty = v8::HeapGraphEdge::kProperty,
25 kInternal = v8::HeapGraphEdge::kInternal,
26 kHidden = v8::HeapGraphEdge::kHidden,
27 kShortcut = v8::HeapGraphEdge::kShortcut,
28 kWeak = v8::HeapGraphEdge::kWeak
31 HeapGraphEdge() { }
32 HeapGraphEdge(Type type, const char* name, int from, int to)
    [all...]
heap-snapshot-generator.cc 20 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to)
33 HeapGraphEdge::HeapGraphEdge(Type type, int index, int from, int to)
42 void HeapGraphEdge::ReplaceToIndexWithEntry(HeapSnapshot* snapshot) {
65 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type,
68 HeapGraphEdge edge(type, name, this->index(), entry->index());
74 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type,
77 HeapGraphEdge edge(type, index, this->index(), entry->index());
103 Vector<HeapGraphEdge*> ch = children()
    [all...]
api.cc     [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 74 i::Vector<i::HeapGraphEdge*> children = entry->children();
76 if (children[i]->type() == i::HeapGraphEdge::kShortcut) continue;
112 v8::HeapGraphEdge::Type type,
115 const v8::HeapGraphEdge* prop = node->GetChild(i);
126 const v8::HeapGraphEdge* prop = node->GetChild(i);
148 i::List<i::HeapGraphEdge>& edges = heap_snapshot->edges();
193 GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "a2");
196 NULL, GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "b2_1"));
198 NULL, GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "b2_2"));
199 CHECK_NE(NULL, GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "c2"))
    [all...]
  /external/v8/include/
v8-profiler.h 183 class V8_EXPORT HeapGraphEdge {
199 /** Returns edge type (see HeapGraphEdge::Type). */
265 const HeapGraphEdge* GetChild(int index) const;

Completed in 175 milliseconds