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

  /external/webkit/Source/WebCore/bindings/v8/
RetainedObjectInfo.h 38 class RetainedObjectInfo : public v8::RetainedObjectInfo {
RetainedDOMInfo.h 34 #include "RetainedObjectInfo.h"
40 // Implements v8::RetainedObjectInfo.
41 class RetainedDOMInfo : public RetainedObjectInfo {
46 virtual bool IsEquivalent(v8::RetainedObjectInfo* other);
RetainedDOMInfo.cpp 53 bool RetainedDOMInfo::IsEquivalent(v8::RetainedObjectInfo* other)
56 return other == this || static_cast<WebCore::RetainedObjectInfo*>(other)->GetEquivalenceClass() == this->GetEquivalenceClass();
V8GCController.cpp 43 #include "RetainedObjectInfo.h"
171 // Implements v8::RetainedObjectInfo.
172 class UnspecifiedGroup : public RetainedObjectInfo {
182 virtual bool IsEquivalent(v8::RetainedObjectInfo* other)
185 return other == this || static_cast<WebCore::RetainedObjectInfo*>(other)->GetEquivalenceClass() == this->GetEquivalenceClass();
214 RetainedObjectInfo* createRetainedObjectInfo() const
246 RetainedObjectInfo* createRetainedObjectInfo() const { return m_groupId.createRetainedObjectInfo(); }
ScriptProfiler.cpp 104 static v8::RetainedObjectInfo* retainedDOMInfo(uint16_t classId, v8::Handle<v8::Value> wrapper)
  /external/v8/include/
v8-profiler.h 382 class RetainedObjectInfo;
390 * Callback function invoked for obtaining RetainedObjectInfo for
395 typedef RetainedObjectInfo* (*WrapperInfoCallback)
444 * RetainedObjectInfo instance describing the group. To collect
459 * V8 takes ownership of RetainedObjectInfo instances passed to it and
463 class V8EXPORT RetainedObjectInfo { // NOLINT
469 virtual bool IsEquivalent(RetainedObjectInfo* other) = 0;
504 RetainedObjectInfo() {}
505 virtual ~RetainedObjectInfo() {}
508 RetainedObjectInfo(const RetainedObjectInfo&)
    [all...]
v8.h 411 * Assigns a wrapper class ID to the handle. See RetainedObjectInfo
    [all...]
  /external/v8/src/
global-handles.h 51 v8::RetainedObjectInfo* info) {
67 v8::RetainedObjectInfo* info_;
207 v8::RetainedObjectInfo* info);
heap-profiler.h 70 v8::RetainedObjectInfo* ExecuteWrapperClassCallback(uint16_t class_id,
profile-generator.h 706 static SnapshotObjectId GenerateId(v8::RetainedObjectInfo* info);
    [all...]
heap-profiler.cc 100 v8::RetainedObjectInfo* HeapProfiler::ExecuteWrapperClassCallback(
profile-generator.cc     [all...]
global-handles.cc 675 v8::RetainedObjectInfo* info) {
api.cc     [all...]
  /external/v8/test/cctest/
test-mark-compact.cc 415 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
426 virtual bool IsEquivalent(v8::RetainedObjectInfo* other) {
test-heap-profiler.cc 767 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
787 virtual bool IsEquivalent(RetainedObjectInfo* other) {
797 static v8::RetainedObjectInfo* WrapperInfoCallback(
    [all...]

Completed in 3339 milliseconds