Home
last modified time | relevance | path

Searched refs:field_class (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dcommon_dex_operations.h211 ObjPtr<mirror::Class> field_class; in DoFieldPutCommon() local
216 field_class = field->ResolveType(); in DoFieldPutCommon()
219 if (UNLIKELY(field_class.IsNull())) { in DoFieldPutCommon()
223 if (UNLIKELY(!reg->VerifierInstanceOf(field_class.Ptr()))) { in DoFieldPutCommon()
229 field_class->GetDescriptor(&temp2), in DoFieldPutCommon()
Druntime.cc835 auto field_class(hs.NewHandle<mirror::Class>(GetClassRoot<mirror::Field>(class_roots))); in Start() local
840 class_linker_->EnsureInitialized(soa.Self(), field_class, true, true); in Start()
/art/runtime/dex/
Ddex_file_annotations.cc592 Handle<mirror::Class> field_class(hs.NewHandle(enum_field->GetDeclaringClass())); in ProcessAnnotationValue() local
593 Runtime::Current()->GetClassLinker()->EnsureInitialized(self, field_class, true, true); in ProcessAnnotationValue()
594 element_object = enum_field->GetObject(field_class.Get()); in ProcessAnnotationValue()
1016 const ClassData field_class(hs, field); in GetAnnotationForField() local
1017 return GetAnnotationObjectFromAnnotationSet(field_class, in GetAnnotationForField()
1026 const ClassData field_class(hs, field); in GetAnnotationsForField() local
1027 return ProcessAnnotationSet(field_class, annotation_set, DexFile::kDexVisibilityRuntime); in GetAnnotationsForField()
1036 const ClassData field_class(hs, field); in GetSignatureAnnotationForField() local
1037 return GetSignatureValue(field_class, annotation_set); in GetSignatureAnnotationForField()
1046 const ClassData field_class(hs, field); in IsFieldAnnotationPresent() local
[all …]
/art/compiler/dex/
Dinline_method_analyser.cc721 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()