Home | History | Annotate | Download | only in runtime

Lines Matching defs:s2

883   mirror::ArtField* s2 = mirror::Class::FindStaticField(soa.Self(), statics, "s2", "C");
884 EXPECT_EQ(s2->GetTypeAsPrimitiveType(), Primitive::kPrimChar);
885 EXPECT_EQ('a', s2->GetChar(statics.Get()));
886 s2->SetChar<false>(statics.Get(), 'b');
924 EXPECT_EQ('b', s2->GetChar(statics.Get()));