Searched refs:field_class (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | common_dex_operations.h | 216 ObjPtr<mirror::Class> field_class; in DoFieldPutCommon() local 223 field_class = field->ResolveType(); in DoFieldPutCommon() 226 if (UNLIKELY(field_class.IsNull())) { in DoFieldPutCommon() 230 if (UNLIKELY(!reg->VerifierInstanceOf(field_class))) { in DoFieldPutCommon() 236 field_class->GetDescriptor(&temp2), in DoFieldPutCommon()
|
D | runtime.cc | 894 auto field_class(hs.NewHandle<mirror::Class>(GetClassRoot<mirror::Field>(class_roots))); in Start() local 900 class_linker_->EnsureInitialized(soa.Self(), field_class, true, true); in Start()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 577 Handle<mirror::Class> field_class(hs.NewHandle(enum_field->GetDeclaringClass())); in ProcessAnnotationValue() local 578 Runtime::Current()->GetClassLinker()->EnsureInitialized(self, field_class, true, true); in ProcessAnnotationValue() 579 element_object = enum_field->GetObject(field_class.Get()); in ProcessAnnotationValue() 995 const ClassData field_class(hs, field); in GetAnnotationForField() local 996 return GetAnnotationObjectFromAnnotationSet(field_class, in GetAnnotationForField() 1005 const ClassData field_class(hs, field); in GetAnnotationsForField() local 1006 return ProcessAnnotationSet(field_class, annotation_set, DexFile::kDexVisibilityRuntime); in GetAnnotationsForField() 1015 const ClassData field_class(hs, field); in GetSignatureAnnotationForField() local 1016 return GetSignatureValue(field_class, annotation_set); in GetSignatureAnnotationForField() 1025 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()
|
/art/test/1975-hello-structural-transformation/src/art/ |
D | Test1975.java | 263 public static native void readNativeFields(Class<?> field_class, long[] sfields); in readNativeFields() argument
|