Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Dmod_union_table_test.cc204 auto* obj3 = AllocObjectArray(self, space, CardTable::kCardSize); in RunTest() local
205 ASSERT_TRUE(obj3 != nullptr); in RunTest()
210 obj2->Set(0, obj3); in RunTest()
211 obj3->Set(0, obj4); in RunTest()
235 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj3))); in RunTest()
/art/runtime/jni/
Dlocal_reference_table_test.cc80 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self())); in BasicTest() local
81 ASSERT_TRUE(obj3 != nullptr); in BasicTest()
182 IndirectRef iref3 = lrt.Add(obj3.Get(), &error_msg); in BasicTest()
315 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self())); in BasicHolesTest() local
316 ASSERT_TRUE(obj3 != nullptr); in BasicHolesTest()
340 IndirectRef iref3 = lrt.Add(obj3.Get(), &error_msg); in BasicHolesTest()
368 IndirectRef iref3 = lrt.Add(obj3.Get(), &error_msg); in BasicHolesTest()
406 IndirectRef iref3 = lrt.Add(obj3.Get(), &error_msg); in BasicHolesTest()
446 IndirectRef iref4 = lrt.Add(obj3.Get(), &error_msg); in BasicHolesTest()
493 IndirectRef iref4 = lrt.Add(obj3.Get(), &error_msg); in BasicHolesTest()
[all …]
/art/runtime/
Dindirect_reference_table_test.cc77 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self())); in TEST_F() local
78 ASSERT_TRUE(obj3 != nullptr); in TEST_F()
170 IndirectRef iref3 = irt.Add(obj3.Get(), &error_msg); in TEST_F()
/art/test/530-checker-lse/src/
DMain.java614 TestClass obj3 = new TestClass(); in test22() local
615 obj3.i = 5; // This store can be eliminated since the singleton is created after the loop. in test22()
616 sum += obj1.i + obj3.i; in test22()
4152 SubTestClass obj3 = new SubTestClass(); in main() local
4153 assertIntEquals(test14(obj3, obj3), 2); in main()