Home
last modified time | relevance | path

Searched refs:HeapGraphNode (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/v8/test/cctest/
Dtest-heap-profiler.cc99 static const v8::HeapGraphNode* GetGlobalObject( in GetGlobalObject()
103 const v8::HeapGraphNode* global_obj = in GetGlobalObject()
111 static const v8::HeapGraphNode* GetProperty(const v8::HeapGraphNode* node, in GetProperty()
124 static bool HasString(const v8::HeapGraphNode* node, const char* contents) { in HasString()
127 const v8::HeapGraphNode* node = prop->GetToNode(); in HasString()
128 if (node->GetType() == v8::HeapGraphNode::kString) { in HasString()
189 const v8::HeapGraphNode* global_env2 = GetGlobalObject(snapshot_env2); in TEST()
192 const v8::HeapGraphNode* a2_node = in TEST()
225 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); in TEST()
226 const v8::HeapGraphNode* x = in TEST()
[all …]
/external/chromium_org/third_party/WebKit/Source/web/tests/
DListenerLeakTest.cpp46 const v8::HeapGraphNode* GetProperty(const v8::HeapGraphNode* node, v8::HeapGraphEdge::Type type, c… in GetProperty()
69 const v8::HeapGraphNode* node = snapshot->GetNode(i); in GetNumObjects()
70 if (node->GetType() != v8::HeapGraphNode::kObject) in GetNumObjects()
74 …const v8::HeapGraphNode* constructorProp = GetProperty(node, v8::HeapGraphEdge::kProperty, "constr… in GetNumObjects()
/external/chromium_org/v8/include/
Dv8-profiler.h15 class HeapGraphNode; variable
209 const HeapGraphNode* GetFromNode() const;
212 const HeapGraphNode* GetToNode() const;
219 class V8_EXPORT HeapGraphNode {
316 const HeapGraphNode* GetRoot() const;
319 const HeapGraphNode* GetNodeById(SnapshotObjectId id) const;
325 const HeapGraphNode* GetNode(int index) const;
/external/chromium_org/v8/src/
Dheap-snapshot-generator.h75 kHidden = v8::HeapGraphNode::kHidden,
76 kArray = v8::HeapGraphNode::kArray,
77 kString = v8::HeapGraphNode::kString,
78 kObject = v8::HeapGraphNode::kObject,
79 kCode = v8::HeapGraphNode::kCode,
80 kClosure = v8::HeapGraphNode::kClosure,
81 kRegExp = v8::HeapGraphNode::kRegExp,
82 kHeapNumber = v8::HeapGraphNode::kHeapNumber,
83 kNative = v8::HeapGraphNode::kNative,
84 kSynthetic = v8::HeapGraphNode::kSynthetic,
[all …]
Dapi.cc7219 const HeapGraphNode* HeapGraphEdge::GetFromNode() const { in GetFromNode()
7221 return reinterpret_cast<const HeapGraphNode*>(from); in GetFromNode()
7225 const HeapGraphNode* HeapGraphEdge::GetToNode() const { in GetToNode()
7227 return reinterpret_cast<const HeapGraphNode*>(to); in GetToNode()
7231 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) { in ToInternal()
7237 HeapGraphNode::Type HeapGraphNode::GetType() const { in GetType()
7238 return static_cast<HeapGraphNode::Type>(ToInternal(this)->type()); in GetType()
7242 Handle<String> HeapGraphNode::GetName() const { in GetName()
7249 SnapshotObjectId HeapGraphNode::GetId() const { in GetId()
7254 int HeapGraphNode::GetSelfSize() const { in GetSelfSize()
[all …]