Home
last modified time | relevance | path

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

/aosp12/system/netd/libnetdutils/
H A DThreadUtilTest.cpp109 NoopRun* obj3 = new NoopRun(name); in TEST() local
110 obj3->setExpectedName(name.substr(0, 15)); in TEST()
116 threadLaunch(obj3); in TEST()
/aosp12/art/runtime/
H A 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()
169 IndirectRef iref3 = irt.Add(cookie, obj3.Get(), &error_msg); in TEST_F()
291 Handle<mirror::Object> obj3 = hs.NewHandle(c->AllocObject(soa.Self())); in TEST_F() local
292 ASSERT_TRUE(obj3 != nullptr); in TEST_F()
319 IndirectRef iref3 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
348 IndirectRef iref3 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
390 IndirectRef iref3 = irt.Add(cookie2, obj3.Get(), &error_msg); in TEST_F()
429 IndirectRef iref4 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
477 IndirectRef iref4 = irt.Add(cookie1, obj3.Get(), &error_msg); in TEST_F()
/aosp12/art/runtime/gc/accounting/
H A 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()
/aosp12/art/compiler/optimizing/
H A Dinstruction_simplifier_test.cc170 HInstruction* obj3 = MakeNewInstance(cls); in TEST_F() local
172 case3->AddInstruction(obj3); in TEST_F()
176 HPhi* obj_phi = MakePhi({obj1_param, obj2_param, obj3}); in TEST_F()
262 HInstruction* obj3 = MakeNewInstance(cls); in TEST_F() local
264 case3->AddInstruction(obj3); in TEST_F()
268 HPhi* obj_phi = MakePhi({obj1_param, obj2_param, obj3}); in TEST_F()
296 EXPECT_FALSE(obj3->CanBeNull()); in TEST_F()
/aosp12/art/test/530-checker-lse/src/
H A DMain.java618 TestClass obj3 = new TestClass(); in test22() local
619 obj3.i = 5; // This store can be eliminated since the singleton is created after the loop. in test22()
620 sum += obj1.i + obj3.i; in test22()
4018 SubTestClass obj3 = new SubTestClass(); in main() local
4019 assertIntEquals(test14(obj3, obj3), 2); in main()
/aosp12/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp1030 Data2 obj3, obj4; in TEST_F() local
1033 obj3.set(buf1); in TEST_F()
1034 obj4 = std::move(obj3); in TEST_F()
1035 EXPECT_FALSE(obj3.used()); in TEST_F()