Home | History | Annotate | Download | only in cctest

Lines Matching refs:TestRetainedObjectInfo

1386 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
1388 TestRetainedObjectInfo(int hash,
1401 virtual ~TestRetainedObjectInfo() {}
1422 return new TestRetainedObjectInfo(1, "aaa-group", "aaa", 100);
1424 return new TestRetainedObjectInfo(1, "aaa-group", "aaa", 100);
1430 return new TestRetainedObjectInfo(2, "ccc-group", "ccc");
1437 static i::List<TestRetainedObjectInfo*> instances;
1449 i::List<TestRetainedObjectInfo*> TestRetainedObjectInfo::instances;
1475 1, TestRetainedObjectInfo::WrapperInfoCallback);
1477 2, TestRetainedObjectInfo::WrapperInfoCallback);
1484 CHECK_EQ(0, TestRetainedObjectInfo::instances.length());
1489 CHECK_EQ(3, TestRetainedObjectInfo::instances.length());
1490 for (int i = 0; i < TestRetainedObjectInfo::instances.length(); ++i) {
1491 CHECK(TestRetainedObjectInfo::instances[i]->disposed());
1492 delete TestRetainedObjectInfo::instances[i];