Home
last modified time | relevance | path

Searched refs:RetainedObjectInfo (Results 1 – 19 of 19) sorted by relevance

/external/v8/include/
Dv8-profiler.h382 class RetainedObjectInfo; variable
395 typedef RetainedObjectInfo* (*WrapperInfoCallback)
463 class V8EXPORT RetainedObjectInfo { // NOLINT
469 virtual bool IsEquivalent(RetainedObjectInfo* other) = 0;
504 RetainedObjectInfo() {} in RetainedObjectInfo() function
505 virtual ~RetainedObjectInfo() {} in ~RetainedObjectInfo()
508 RetainedObjectInfo(const RetainedObjectInfo&);
509 RetainedObjectInfo& operator=(const RetainedObjectInfo&);
Dv8.h2727 class RetainedObjectInfo; variable
3109 RetainedObjectInfo* info = NULL);
/external/webkit/Source/WebCore/bindings/v8/
DRetainedObjectInfo.h38 class RetainedObjectInfo : public v8::RetainedObjectInfo {
DRetainedDOMInfo.h41 class RetainedDOMInfo : public RetainedObjectInfo {
46 virtual bool IsEquivalent(v8::RetainedObjectInfo* other);
DRetainedDOMInfo.cpp53 bool RetainedDOMInfo::IsEquivalent(v8::RetainedObjectInfo* other) in IsEquivalent()
56 …return other == this || static_cast<WebCore::RetainedObjectInfo*>(other)->GetEquivalenceClass() ==… in IsEquivalent()
DV8GCController.cpp172 class UnspecifiedGroup : public RetainedObjectInfo {
182 virtual bool IsEquivalent(v8::RetainedObjectInfo* other) in IsEquivalent()
185 …return other == this || static_cast<WebCore::RetainedObjectInfo*>(other)->GetEquivalenceClass() ==… in IsEquivalent()
214 RetainedObjectInfo* createRetainedObjectInfo() const in createRetainedObjectInfo()
246RetainedObjectInfo* createRetainedObjectInfo() const { return m_groupId.createRetainedObjectInfo()… in createRetainedObjectInfo()
DScriptProfiler.cpp104 static v8::RetainedObjectInfo* retainedDOMInfo(uint16_t classId, v8::Handle<v8::Value> wrapper) in retainedDOMInfo()
/external/v8/src/
Dglobal-handles.h51 v8::RetainedObjectInfo* info) { in New()
67 v8::RetainedObjectInfo* info_;
207 v8::RetainedObjectInfo* info);
Dprofile-generator.h706 static SnapshotObjectId GenerateId(v8::RetainedObjectInfo* info);
1035 List<HeapObject*>* GetListMaybeDisposeInfo(v8::RetainedObjectInfo* info);
1036 void SetNativeRootReference(v8::RetainedObjectInfo* info);
1039 v8::RetainedObjectInfo* info);
1042 static uint32_t InfoHash(v8::RetainedObjectInfo* info) { in InfoHash()
1048 (reinterpret_cast<v8::RetainedObjectInfo*>(key1))->IsEquivalent( in RetainedInfosMatch()
1049 reinterpret_cast<v8::RetainedObjectInfo*>(key2)); in RetainedInfosMatch()
Dheap-profiler.h70 v8::RetainedObjectInfo* ExecuteWrapperClassCallback(uint16_t class_id,
Dprofile-generator.cc1400 SnapshotObjectId HeapObjectsMap::GenerateId(v8::RetainedObjectInfo* info) { in GenerateId()
2669 v8::RetainedObjectInfo* info = reinterpret_cast<v8::RetainedObjectInfo*>(ptr); in AllocateEntry()
2707 v8::RetainedObjectInfo* info = in ~NativeObjectsExplorer()
2708 reinterpret_cast<v8::RetainedObjectInfo*>(p->key); in ~NativeObjectsExplorer()
2717 v8::RetainedObjectInfo* info = in ~NativeObjectsExplorer()
2718 reinterpret_cast<v8::RetainedObjectInfo*>(p->value); in ~NativeObjectsExplorer()
2782 v8::RetainedObjectInfo* info) { in GetListMaybeDisposeInfo()
2803 v8::RetainedObjectInfo* info = in IterateAndExtractReferences()
2804 reinterpret_cast<v8::RetainedObjectInfo*>(p->key); in IterateAndExtractReferences()
2819 class NativeGroupRetainedObjectInfo : public v8::RetainedObjectInfo {
[all …]
Dheap-profiler.cc100 v8::RetainedObjectInfo* HeapProfiler::ExecuteWrapperClassCallback( in ExecuteWrapperClassCallback()
Dglobal-handles.cc675 v8::RetainedObjectInfo* info) { in AddObjectGroup()
Dapi.cc5180 RetainedObjectInfo* info) { in AddObjectGroup()
/external/v8/test/cctest/
Dtest-mark-compact.cc415 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
426 virtual bool IsEquivalent(v8::RetainedObjectInfo* other) { in IsEquivalent()
Dtest-heap-profiler.cc767 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
787 virtual bool IsEquivalent(RetainedObjectInfo* other) { in IsEquivalent()
797 static v8::RetainedObjectInfo* WrapperInfoCallback( in WrapperInfoCallback()
/external/webkit/Source/WebCore/
DWebCore.pro1240 bindings/v8/RetainedObjectInfo.h \
DWebCore.gypi1958 'bindings/v8/RetainedObjectInfo.h',
DChangeLog43651 * bindings/v8/RetainedObjectInfo.h: Added.