Searched refs:boolean_class (Results 1 – 1 of 1) sorted by relevance
/art/runtime/ |
D | transaction_test.cc | 614 Handle<mirror::Class> boolean_class = hs.NewHandle( in TEST_F() local 616 ASSERT_TRUE(boolean_class != nullptr); in TEST_F() 617 ASSERT_TRUE(heap->ObjectIsInBootImageSpace(boolean_class.Get())); in TEST_F() 619 mirror::Class::FindField(soa.Self(), boolean_class.Get(), "TRUE", "Ljava/lang/Boolean;"); in TEST_F() 622 Handle<mirror::Object> true_value = hs.NewHandle(true_field->GetObject(boolean_class.Get())); in TEST_F() 626 mirror::Class::FindField(soa.Self(), boolean_class.Get(), "value", "Z"); in TEST_F() 689 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 690 EXPECT_FALSE(transaction.ReadConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 713 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), boolean_class.Get())); in TEST_F() 714 EXPECT_TRUE(strict_transaction.ReadConstraint(soa.Self(), boolean_class.Get())); in TEST_F()
|