Home
last modified time | relevance | path

Searched refs:HeapGraphEdge (Results 1 - 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/profiler/
H A Dheap-snapshot-generator-inl.h16 HeapEntry* HeapGraphEdge::from() const { in from()
20 Isolate* HeapGraphEdge::isolate() const { return to_entry_->isolate(); } in isolate()
22 HeapSnapshot* HeapGraphEdge::snapshot() const { in snapshot()
33 void HeapEntry::add_child(HeapGraphEdge* edge) { in add_child()
37 HeapGraphEdge* HeapEntry::child(int i) { return children_begin()[i]; } in child()
39 std::vector<HeapGraphEdge*>::iterator HeapEntry::children_begin() const { in children_begin()
44 std::vector<HeapGraphEdge*>::iterator HeapEntry::children_end() const { in children_end()
H A Dheap-snapshot-generator.h58 class HeapGraphEdge { class
61 kContextVariable = v8::HeapGraphEdge::kContextVariable,
62 kElement = v8::HeapGraphEdge::kElement,
63 kProperty = v8::HeapGraphEdge::kProperty,
64 kInternal = v8::HeapGraphEdge::kInternal,
65 kHidden = v8::HeapGraphEdge::kHidden,
66 kShortcut = v8::HeapGraphEdge::kShortcut,
67 kWeak = v8::HeapGraphEdge::kWeak
70 HeapGraphEdge(Type type, const char* name, HeapEntry* from, HeapEntry* to);
71 HeapGraphEdge(Typ
[all...]
H A Dheap-snapshot-generator.cc192 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, HeapEntry* from, in HeapGraphEdge() function in v8::internal::HeapGraphEdge
205 HeapGraphEdge::HeapGraphEdge(Type type, int index, HeapEntry* from, in HeapGraphEdge() function in v8::internal::HeapGraphEdge
228 void HeapEntry::VerifyReference(HeapGraphEdge::Type type, HeapEntry* entry, in VerifyReference()
242 CHECK_EQ(type, HeapGraphEdge::kWeak); in VerifyReference()
269 } else if (type == HeapGraphEdge::kWeak) { in VerifyReference()
277 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, const char* name, in SetNamedReference()
286 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type, int index, in SetIndexedReference()
295 void HeapEntry::SetNamedAutoIndexReference(HeapGraphEdge
[all...]
/third_party/node/deps/v8/include/v8-include/
H A Dv8-profiler.h543 class V8_EXPORT HeapGraphEdge { class
559 /** Returns edge type (see HeapGraphEdge::Type). */
625 const HeapGraphEdge* GetChild(int index) const;
/third_party/node/deps/v8/include/
H A Dv8-profiler.h543 class V8_EXPORT HeapGraphEdge { class
559 /** Returns edge type (see HeapGraphEdge::Type). */
622 const HeapGraphEdge* GetChild(int index) const;
/third_party/node/deps/v8/src/api/
H A Dapi.cc10103 static i::HeapGraphEdge* ToInternal(const HeapGraphEdge* edge) { in ToInternal()
10104 return const_cast<i::HeapGraphEdge*>( in ToInternal()
10105 reinterpret_cast<const i::HeapGraphEdge*>(edge)); in ToInternal()
10108 HeapGraphEdge::Type HeapGraphEdge::GetType() const { in GetType()
10109 return static_cast<HeapGraphEdge::Type>(ToInternal(this)->type()); in GetType()
10112 Local<Value> HeapGraphEdge::GetName() const { in GetName()
10113 i::HeapGraphEdge* edge = ToInternal(this); in GetName()
10116 case i::HeapGraphEdge in GetName()
[all...]

Completed in 28 milliseconds