Home | History | Annotate | Download | only in runtime

Lines Matching refs:Method

24 #include "mirror/method.h"
52 // Builds the method array.
58 methods_count, soa.AddLocalReference<jclass>(mirror::Method::StaticClass()), nullptr);
62 // Fill the method array
63 ArtMethod* method = javaLangObject->FindDeclaredVirtualMethod(
65 CHECK(method != nullptr);
68 mirror::Method::CreateFromArtMethod(soa.Self(), method)));
69 method = javaLangObject->FindDeclaredVirtualMethod("hashCode", "()I", sizeof(void*));
70 CHECK(method != nullptr);
73 mirror::Method::CreateFromArtMethod(soa.Self(), method)));
74 method = javaLangObject->FindDeclaredVirtualMethod(
76 CHECK(method != nullptr);
79 mirror::Method::CreateFromArtMethod(soa.Self(), method)));
85 mirror::Method::CreateFromArtMethod(soa.Self(), &m)));