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

  /external/v8/src/profiler/
heap-snapshot-generator-inl.h 14 HeapEntry* HeapGraphEdge::from() const {
19 Isolate* HeapGraphEdge::isolate() const {
24 HeapSnapshot* HeapGraphEdge::snapshot() const {
42 HeapGraphEdge** HeapEntry::children_arr() {
heap-snapshot-generator.h 24 class HeapGraphEdge BASE_EMBEDDED {
27 kContextVariable = v8::HeapGraphEdge::kContextVariable,
28 kElement = v8::HeapGraphEdge::kElement,
29 kProperty = v8::HeapGraphEdge::kProperty,
30 kInternal = v8::HeapGraphEdge::kInternal,
31 kHidden = v8::HeapGraphEdge::kHidden,
32 kShortcut = v8::HeapGraphEdge::kShortcut,
33 kWeak = v8::HeapGraphEdge::kWeak
36 HeapGraphEdge(Type type, const char* name, int from, int to);
37 HeapGraphEdge(Type type, int index, int from, int to)
    [all...]
heap-snapshot-generator.cc 20 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to)
32 HeapGraphEdge::HeapGraphEdge(Type type, int index, int from, int to)
40 void HeapGraphEdge::ReplaceToIndexWithEntry(HeapSnapshot* snapshot) {
63 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type,
66 HeapGraphEdge edge(type, name, this->index(), entry->index());
72 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type,
75 HeapGraphEdge edge(type, index, this->index(), entry->index());
101 Vector<HeapGraphEdge*> ch = children()
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 73 i::Vector<i::HeapGraphEdge*> children = entry->children();
75 if (children[i]->type() == i::HeapGraphEdge::kShortcut) continue;
110 v8::HeapGraphEdge::Type type,
113 const v8::HeapGraphEdge* prop = node->GetChild(i);
124 const v8::HeapGraphEdge* prop = node->GetChild(i);
146 i::List<i::HeapGraphEdge>& edges = heap_snapshot->edges();
188 GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "a2");
190 CHECK(GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "b2_1"));
191 CHECK(GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "b2_2"));
192 CHECK(GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "c2"))
    [all...]
  /external/v8/include/
v8-profiler.h 226 class V8_EXPORT HeapGraphEdge {
242 /** Returns edge type (see HeapGraphEdge::Type). */
305 const HeapGraphEdge* GetChild(int index) const;
  /external/v8/src/
api.cc     [all...]

Completed in 51 milliseconds