Home
last modified time | relevance | path

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

/art/runtime/
Dcommon_dex_operations.h242 ObjPtr<mirror::Class> field_class; in DoFieldPutCommon() local
249 field_class = field->ResolveType(); in DoFieldPutCommon()
252 if (UNLIKELY(field_class.IsNull())) { in DoFieldPutCommon()
256 if (UNLIKELY(!reg->VerifierInstanceOf(field_class))) { in DoFieldPutCommon()
262 field_class->GetDescriptor(&temp2), in DoFieldPutCommon()
/art/runtime/dex/
Ddex_file_annotations.cc575 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()
1022 const ClassData field_class(hs, field); in GetAnnotationForField() local
1023 return GetAnnotationObjectFromAnnotationSet(field_class, in GetAnnotationForField()
1032 const ClassData field_class(hs, field); in GetAnnotationsForField() local
1033 return ProcessAnnotationSet(field_class, annotation_set, DexFile::kDexVisibilityRuntime); in GetAnnotationsForField()
1042 const ClassData field_class(hs, field); in GetSignatureAnnotationForField() local
1043 return GetSignatureValue(field_class, annotation_set); in GetSignatureAnnotationForField()
1052 const ClassData field_class(hs, field); in IsFieldAnnotationPresent() local
[all …]
/art/compiler/dex/
Dinline_method_analyser.cc689 ObjPtr<mirror::Class> field_class = field->GetDeclaringClass(); in ComputeSpecialAccessorInfo() local
690 if (!method_class->CanAccessResolvedField(field_class, field, dex_cache, field_idx) || in ComputeSpecialAccessorInfo()
691 (is_put && field->IsFinal() && method_class != field_class)) { in ComputeSpecialAccessorInfo()
/art/test/1975-hello-structural-transformation/src/art/
DTest1975.java263 public static native void readNativeFields(Class<?> field_class, long[] sfields); in readNativeFields() argument