Searched refs:statics (Results 1 – 1 of 1) sorted by relevance
/art/runtime/ |
D | class_linker_test.cc | 1170 Handle<mirror::Class> statics( in TEST_F() local 1172 class_linker_->EnsureInitialized(soa.Self(), statics, true, true); in TEST_F() 1177 ArtMethod* clinit = statics->FindClassMethod("<clinit>", "()V", kRuntimePointerSize); in TEST_F() 1180 EXPECT_EQ(9U, statics->NumStaticFields()); in TEST_F() 1182 ArtField* s0 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s0", "Z"); in TEST_F() 1184 EXPECT_EQ(true, s0->GetBoolean(statics.Get())); in TEST_F() 1185 s0->SetBoolean<false>(statics.Get(), false); in TEST_F() 1187 ArtField* s1 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s1", "B"); in TEST_F() 1189 EXPECT_EQ(5, s1->GetByte(statics.Get())); in TEST_F() 1190 s1->SetByte<false>(statics.Get(), 6); in TEST_F() [all …]
|