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 19 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to)
31 HeapGraphEdge::HeapGraphEdge(Type type, int index, int from, int to)
39 void HeapGraphEdge::ReplaceToIndexWithEntry(HeapSnapshot* snapshot) {
62 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type,
65 HeapGraphEdge edge(type, name, this->index(), entry->index());
71 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type,
74 HeapGraphEdge edge(type, index, this->index(), entry->index());
100 Vector<HeapGraphEdge*> ch = children()
    [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;
111 v8::HeapGraphEdge::Type type,
114 const v8::HeapGraphEdge* prop = node->GetChild(i);
125 const v8::HeapGraphEdge* prop = node->GetChild(i);
147 i::List<i::HeapGraphEdge>& edges = heap_snapshot->edges();
189 GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "a2");
191 CHECK(GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "b2_1"));
192 CHECK(GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "b2_2"));
193 CHECK(GetProperty(global_env2, v8::HeapGraphEdge::kProperty, "c2"))
    [all...]
  /external/v8/include/
v8-profiler.h 233 class V8_EXPORT HeapGraphEdge {
249 /** Returns edge type (see HeapGraphEdge::Type). */
312 const HeapGraphEdge* GetChild(int index) const;
  /external/v8/src/
api.cc     [all...]

Completed in 2877 milliseconds