Lines Matching refs:table
195 std::unique_ptr<ModUnionTable> table(ModUnionTableFactory::Create( in RunTest() local
197 ASSERT_TRUE(table.get() != nullptr); in RunTest()
219 table->ProcessCards(); in RunTest()
222 table->UpdateAndMarkReferences(&collector_before); in RunTest()
230 ASSERT_TRUE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj1))); in RunTest()
231 ASSERT_TRUE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj2))); in RunTest()
234 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj3))); in RunTest()
235 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj4))); in RunTest()
239 table->Verify(); in RunTest()
243 table->Dump(oss); in RunTest()
245 table->SetCards(); in RunTest()
249 ASSERT_TRUE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(ptr))); in RunTest()
254 table->UpdateAndMarkReferences(&collector_after); in RunTest()
261 table->Dump(oss2); in RunTest()