• Home
  • Raw
  • Download

Lines Matching refs:javaMethod

32 static jobject Constructor_getAnnotationNative(JNIEnv* env, jobject javaMethod,  in Constructor_getAnnotationNative()  argument
36 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Constructor_getAnnotationNative()
46 static jobjectArray Constructor_getDeclaredAnnotations(JNIEnv* env, jobject javaMethod) { in Constructor_getDeclaredAnnotations() argument
48 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Constructor_getDeclaredAnnotations()
65 static jobjectArray Constructor_getExceptionTypes(JNIEnv* env, jobject javaMethod) { in Constructor_getExceptionTypes() argument
67 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod) in Constructor_getExceptionTypes()
87 static jobjectArray Constructor_getParameterAnnotationsNative(JNIEnv* env, jobject javaMethod) { in Constructor_getParameterAnnotationsNative() argument
89 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Constructor_getParameterAnnotationsNative()
98 static jboolean Constructor_isAnnotationPresentNative(JNIEnv* env, jobject javaMethod, in Constructor_isAnnotationPresentNative() argument
102 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Constructor_isAnnotationPresentNative()
116 static jobject Constructor_newInstance0(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs) { in Constructor_newInstance0() argument
118 mirror::Constructor* m = soa.Decode<mirror::Constructor*>(javaMethod); in Constructor_newInstance0()
159 return InvokeMethod(soa, javaMethod, nullptr, javaArgs, 2); in Constructor_newInstance0()
168 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, 2); in Constructor_newInstance0()