Searched defs:HeapGraphEdge (Results 1 - 5 of 5) sorted by relevance
/external/v8/include/ |
H A D | v8-profiler.h | 211 class V8EXPORT HeapGraphEdge { class in namespace:v8 227 /** Returns edge type (see HeapGraphEdge::Type). */ 294 const HeapGraphEdge* GetChild(int index) const; 300 const HeapGraphEdge* GetRetainer(int index) const;
|
/external/chromium_org/v8/include/ |
H A D | v8-profiler.h | 222 class V8_EXPORT HeapGraphEdge { class in namespace:v8 238 /** Returns edge type (see HeapGraphEdge::Type). */ 297 const HeapGraphEdge* GetChild(int index) const;
|
/external/chromium_org/v8/src/ |
H A D | heap-snapshot-generator.h | 39 class HeapGraphEdge BASE_EMBEDDED { 42 kContextVariable = v8::HeapGraphEdge::kContextVariable, 43 kElement = v8::HeapGraphEdge::kElement, 44 kProperty = v8::HeapGraphEdge::kProperty, 45 kInternal = v8::HeapGraphEdge::kInternal, 46 kHidden = v8::HeapGraphEdge::kHidden, 47 kShortcut = v8::HeapGraphEdge::kShortcut, 48 kWeak = v8::HeapGraphEdge::kWeak 51 HeapGraphEdge() { } function in class:v8::internal::BASE_EMBEDDED 52 HeapGraphEdge(Typ [all...] |
H A D | heap-snapshot-generator.cc | 40 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to) function in class:v8::internal::HeapGraphEdge 52 HeapGraphEdge::HeapGraphEdge(Type type, int index, int from, int to) function in class:v8::internal::HeapGraphEdge 61 void HeapGraphEdge::ReplaceToIndexWithEntry(HeapSnapshot* snapshot) { 82 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, 85 HeapGraphEdge edge(type, name, this->index(), entry->index()); 91 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type, 94 HeapGraphEdge edge(type, index, this->index(), entry->index()); 125 Vector<HeapGraphEdge*> c [all...] |
/external/v8/src/ |
H A D | profile-generator.h | 452 class HeapGraphEdge BASE_EMBEDDED { 455 kContextVariable = v8::HeapGraphEdge::kContextVariable, 456 kElement = v8::HeapGraphEdge::kElement, 457 kProperty = v8::HeapGraphEdge::kProperty, 458 kInternal = v8::HeapGraphEdge::kInternal, 459 kHidden = v8::HeapGraphEdge::kHidden, 460 kShortcut = v8::HeapGraphEdge::kShortcut, 461 kWeak = v8::HeapGraphEdge::kWeak 464 HeapGraphEdge() { } function in class:v8::internal::BASE_EMBEDDED 494 DISALLOW_COPY_AND_ASSIGN(HeapGraphEdge); [all...] |
Completed in 69 milliseconds