Lines Matching refs:annotations
53 return soa.AddLocalReference<jobjectArray>(annotations::GetAnnotationsForMethod(method)); in Executable_getDeclaredAnnotationsNative()
66 return soa.AddLocalReference<jobject>(annotations::GetAnnotationForMethod(method, klass)); in Executable_getAnnotationNative()
76 return soa.AddLocalReference<jobjectArray>(annotations::GetSignatureAnnotationForMethod(method)); in Executable_getSignatureAnnotation()
88 Handle<mirror::ObjectArray<mirror::Object>> annotations = in Executable_getParameterAnnotationsNative() local
89 hs.NewHandle(annotations::GetParameterAnnotations(method)); in Executable_getParameterAnnotationsNative()
90 if (annotations.IsNull()) { in Executable_getParameterAnnotationsNative()
100 annotations->GetLength() == static_cast<int>(method->GetNumberOfParameters())) { in Executable_getParameterAnnotationsNative()
101 return soa.AddLocalReference<jobjectArray>(annotations.Get()); in Executable_getParameterAnnotationsNative()
108 if (annotations::GetEnclosingMethod(declaring_class) != nullptr || in Executable_getParameterAnnotationsNative()
110 return soa.AddLocalReference<jobjectArray>(annotations.Get()); in Executable_getParameterAnnotationsNative()
118 annotations->GetClass(), in Executable_getParameterAnnotationsNative()
126 const int32_t offset = resized_annotations->GetLength() - annotations->GetLength(); in Executable_getParameterAnnotationsNative()
141 for (int i = 0; i < annotations->GetLength(); ++i) { in Executable_getParameterAnnotationsNative()
142 ObjPtr<mirror::Object> annotation = annotations->GetWithoutChecks(i); in Executable_getParameterAnnotationsNative()
150 ObjPtr<mirror::Object> annotation = annotations->GetWithoutChecks(i - offset); in Executable_getParameterAnnotationsNative()
172 if (!annotations::GetParametersMetadataForMethod(art_method, &names, &access_flags)) { in Executable_getParameters0()
265 return annotations::IsMethodAnnotationPresent(method, klass); in Executable_isAnnotationPresentNative()