Searched refs:field_class (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | common_dex_operations.h | 200 ObjPtr<mirror::Class> field_class; in DoFieldPutCommon() local 205 field_class = field->ResolveType(); in DoFieldPutCommon() 207 if (!reg->VerifierInstanceOf(field_class.Ptr())) { in DoFieldPutCommon() 213 field_class->GetDescriptor(&temp2), in DoFieldPutCommon()
|
D | runtime.cc | 757 auto field_class(hs.NewHandle<mirror::Class>(mirror::Field::StaticClass())); in Start() local 761 class_linker_->EnsureInitialized(soa.Self(), field_class, true, true); in Start()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 575 Handle<mirror::Class> field_class(hs.NewHandle(enum_field->GetDeclaringClass())); in ProcessAnnotationValue() local 576 Runtime::Current()->GetClassLinker()->EnsureInitialized(self, field_class, true, true); in ProcessAnnotationValue() 577 element_object = enum_field->GetObject(field_class.Get()); in ProcessAnnotationValue() 1004 const ClassData field_class(hs, field); in GetAnnotationForField() local 1005 return GetAnnotationObjectFromAnnotationSet(field_class, in GetAnnotationForField() 1014 const ClassData field_class(hs, field); in GetAnnotationsForField() local 1015 return ProcessAnnotationSet(field_class, annotation_set, DexFile::kDexVisibilityRuntime); in GetAnnotationsForField() 1024 const ClassData field_class(hs, field); in GetSignatureAnnotationForField() local 1025 return GetSignatureValue(field_class, annotation_set); in GetSignatureAnnotationForField() 1034 const ClassData field_class(hs, field); in IsFieldAnnotationPresent() local [all …]
|
/art/compiler/dex/ |
D | inline_method_analyser.cc | 721 ObjPtr<mirror::Class> field_class = field->GetDeclaringClass(); in ComputeSpecialAccessorInfo() local 722 if (!method_class->CanAccessResolvedField(field_class, field, dex_cache, field_idx) || in ComputeSpecialAccessorInfo() 723 (is_put && field->IsFinal() && method_class != field_class)) { in ComputeSpecialAccessorInfo()
|