Lines Matching refs:table
176 std::unique_ptr<ModUnionTable> table(ModUnionTableFactory::Create( in RunTest() local
178 ASSERT_TRUE(table.get() != nullptr); in RunTest()
200 table->ClearCards(); in RunTest()
202 table->UpdateAndMarkReferences(&CollectVisitedCallback, &visited_before); in RunTest()
210 ASSERT_TRUE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj1))); in RunTest()
211 ASSERT_TRUE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj2))); in RunTest()
214 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj3))); in RunTest()
215 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj4))); in RunTest()
219 table->Verify(); in RunTest()
223 table->Dump(oss); in RunTest()
225 table->SetCards(); in RunTest()
229 ASSERT_TRUE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(ptr))); in RunTest()
233 table->UpdateAndMarkReferences(&CollectVisitedCallback, &visited_after); in RunTest()
240 table->Dump(oss2); in RunTest()