Lines Matching refs:Method
30 #include "mirror/method.h"
372 mirror::Method* result = mirror::Class::GetDeclaredMethodInternal(
394 auto ret = hs.NewHandle(mirror::ObjectArray<mirror::Method>::Alloc(
395 soa.Self(), mirror::Method::ArrayClass(), num_methods));
401 auto* method = mirror::Method::CreateFromArtMethod(soa.Self(), &m);
402 if (method == nullptr) {
406 ret->SetWithoutChecks<false>(num_methods++, method);
490 mirror::Object* method = klass->GetDexFile().GetEnclosingMethod(klass);
491 if (method != nullptr) {
492 if (method->GetClass() ==
494 return soa.AddLocalReference<jobject>(method);
507 mirror::Object* method = klass->GetDexFile().GetEnclosingMethod(klass);
508 if (method != nullptr) {
509 if (method->GetClass() ==
511 return soa.AddLocalReference<jobject>(method);
685 "!(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;"),
687 "!(Z)[Ljava/lang/reflect/Method;"),
691 NATIVE_METHOD(Class, getEnclosingMethodNative, "!()Ljava/lang/reflect/Method;"),