Home | History | Annotate | Download | only in native

Lines Matching defs:method

28 #include "mirror/method.h"
316 // return a non-synthetic method in such situations. We may
317 // still return a synthetic method to handle situations like
343 return soa.AddLocalReference<jobject>(mirror::Method::CreateFromArtMethod(soa.Self(), &m));
346 result = &m; // Remember as potential result if it's not a miranda method.
369 return soa.AddLocalReference<jobject>(mirror::Method::CreateFromArtMethod(soa.Self(), &m));
376 soa.AddLocalReference<jobject>(mirror::Method::CreateFromArtMethod(soa.Self(), result)) :
401 auto ret = hs.NewHandle(mirror::ObjectArray<mirror::Method>::Alloc(
402 soa.Self(), mirror::Method::ArrayClass(), num_methods));
408 auto* method = mirror::Method::CreateFromArtMethod(soa.Self(), &m);
409 method == nullptr) {
413 ret->SetWithoutChecks<false>(num_methods++, method);
421 auto* method = mirror::Method::CreateFromArtMethod(soa.Self(), &m);
422 if (method == nullptr) {
426 ret->SetWithoutChecks<false>(num_methods++, method);
522 "!(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;"),
524 "!(Z)[Ljava/lang/reflect/Method;"),