Home
last modified time | relevance | path

Searched refs:obj3 (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/accounting/
Dmod_union_table_test.cc203 auto* obj3 = AllocObjectArray(self, space, CardTable::kCardSize); in RunTest() local
204 ASSERT_TRUE(obj3 != nullptr); in RunTest()
209 obj2->Set(0, obj3); in RunTest()
210 obj3->Set(0, obj4); in RunTest()
234 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj3))); in RunTest()
/art/runtime/
Dindirect_reference_table_test.cc74 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self())); in TEST_F() local
75 ASSERT_TRUE(obj3 != nullptr); in TEST_F()
168 IndirectRef iref3 = irt.Add(cookie, obj3.Get(), &error_msg); in TEST_F()
293 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self())); in TEST_F() local
294 ASSERT_TRUE(obj3 != nullptr); in TEST_F()
321 IndirectRef iref3 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
350 IndirectRef iref3 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
392 IndirectRef iref3 = irt.Add(cookie2, obj3.Get(), &error_msg); in TEST_F()
431 IndirectRef iref4 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
479 IndirectRef iref4 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
/art/test/530-checker-lse/src/
DMain.java567 TestClass obj3 = new TestClass(); in test22() local
568 obj3.i = 5; // This store can be eliminated since the singleton is created after the loop. in test22()
569 sum += obj1.i + obj3.i; in test22()
1423 SubTestClass obj3 = new SubTestClass(); in main() local
1424 assertIntEquals(test14(obj3, obj3), 2); in main()