Lines Matching refs:method
24 #include "mirror/method.h"
36 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod);
37 if (method->IsProxyMethod()) {
42 method->GetDexFile()->GetAnnotationForMethod(method, klass));
48 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod);
49 if (method->IsProxyMethod()) {
61 method->GetDexFile()->GetAnnotationsForMethod(method));
67 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod)
70 method->GetDexFile()->GetExceptionTypesForMethod(method);
89 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod);
90 if (method->IsProxyMethod()) {
94 method->GetDexFile()->GetParameterAnnotations(method));
102 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod);
103 if (method->IsProxyMethod()) {
108 return method->GetDexFile()->IsMethodAnnotationPresent(method, klass);
129 // Go 2 frames back, this method is always called from newInstance0, which is called from
157 // String constructor is replaced by a StringFactory method in InvokeMethod.