Searched refs:GetMethodID (Results 1 - 10 of 10) sorted by relevance

/art/compiler/driver/
H A Dcompiler_driver_test.cc58 mid_ = env_->GetMethodID(class_, method, signature);
154 jmethodID constructor = env_->GetMethodID(c_class, "<init>", "()V");
/art/dalvikvm/
H A Ddalvikvm.cc45 jmethodID mid = env->GetMethodID(method_class, "getModifiers", "()I");
/art/test/JniTest/
H A Djni_test.cc124 jmethodID miranda_method = env->GetMethodID(abstract_class, "inInterface", "()Z");
/art/runtime/
H A Dwell_known_classes.cc116 jmethodID mid = is_static ? env->GetStaticMethodID(c, name, signature) : env->GetMethodID(c, name, signature);
H A Djni_internal_test.cc873 TEST_F(JniInternalTest, GetMethodID) {
883 jmethodID method = env_->GetMethodID(jlobject, "foo", "()V");
888 method = env_->GetMethodID(jlobject, "equals", "(Ljava/lang/Object;)Z");
892 // Check that GetMethodID for java.lang.String.valueOf(int) fails as the
894 method = env_->GetMethodID(jlstring, "valueOf", "(I)Ljava/lang/String;");
898 // Check that GetMethodID for java.lang.NoSuchMethodError.<init>(String) finds the constructor
899 method = env_->GetMethodID(jlnsme, "<init>", "(Ljava/lang/String;)V");
953 jmethodID mid = env_->GetMethodID(c, "length", "()I");
H A Dreflection.cc95 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
H A Djni_internal.cc384 jmethodID mid = env->GetMethodID(exception_class, "<init>", signature);
786 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
973 static jmethodID GetMethodID(JNIEnv* env, jclass java_class, const char* name, const char* sig) { function in class:art::JNI
974 CHECK_NON_NULL_ARGUMENT(GetMethodID, java_class);
975 CHECK_NON_NULL_ARGUMENT(GetMethodID, name);
976 CHECK_NON_NULL_ARGUMENT(GetMethodID, sig);
2636 JNI::GetMethodID,
H A Dcheck_jni.cc1310 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) { function in class:art::CheckJNI
1312 return CHECK_JNI_EXIT("m", baseEnv(env)->GetMethodID(env, c, name, sig));
1826 CheckJNI::GetMethodID,
/art/compiler/jni/
H A Djni_compiler_test.cc90 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig);
102 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V");
593 jmethodID jmethod = env->GetMethodID(jklass, "fooI", "(I)I");
/art/runtime/gc/
H A Dheap.cc347 env->GetMethodID(activity_thread_class_, "getApplicationThread",

Completed in 1093 milliseconds