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

/art/compiler/driver/
H A Dcompiler_driver_test.cc61 mid_ = env_->GetMethodID(class_, method, signature);
168 jmethodID constructor = env_->GetMethodID(c_class, "<init>", "()V");
/art/test/004-JniTest/
H A Djni_test.cc104 jmethodID getFieldMetodId = env->GetMethodID(class_clazz, "getField",
121 jmethodID getBooleanMetodId = env->GetMethodID(field_clazz, "getBoolean",
156 jmethodID miranda_method = env->GetMethodID(abstract_class, "inInterface", "()Z");
/art/dalvikvm/
H A Ddalvikvm.cc45 jmethodID mid = env->GetMethodID(method_class, "getModifiers", "()I");
/art/runtime/
H A Djni_internal_test.cc268 TEST_F(JniInternalTest, GetMethodID) {
279 jmethodID method = env_->GetMethodID(jlobject, "foo", "()V");
284 method = env_->GetMethodID(jlobject, "equals", "(Ljava/lang/Object;)Z");
288 // Check that GetMethodID for java.lang.String.valueOf(int) fails as the
290 method = env_->GetMethodID(jlstring, "valueOf", "(I)Ljava/lang/String;");
294 // Check that GetMethodID for java.lang.NoSuchMethodError.<init>(String) finds the constructor.
295 method = env_->GetMethodID(jlnsme, "<init>", "(Ljava/lang/String;)V");
299 // Check that GetMethodID can find a interface method inherited from another interface.
300 method = env_->GetMethodID(jncrbc, "close", "()V");
306 method = env_->GetMethodID(nullpt
[all...]
H A Dwell_known_classes.cc134 jmethodID mid = is_static ? env->GetStaticMethodID(c, name, signature) : env->GetMethodID(c, name, signature);
H A Dcheck_jni.cc1303 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) { function in class:art::CheckJNI
1305 return CHECK_JNI_EXIT("m", baseEnv(env)->GetMethodID(env, c, name, sig));
1819 CheckJNI::GetMethodID,
H A Dreflection.cc593 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
H A Djni_internal.cc288 jmethodID mid = env->GetMethodID(exception_class, "<init>", signature);
743 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
935 static jmethodID GetMethodID(JNIEnv* env, jclass java_class, const char* name, const char* sig) { function in class:art::JNI
2753 JNI::GetMethodID,
/art/test/115-native-bridge/
H A Dnativebridge.cc71 mid = env->GetMethodID(klass, methods[i].name, nb_method->signature);
/art/runtime/arch/
H A Dstub_test.cc1678 jmethodID arraylist_constructor = env->GetMethodID(arraylist_jclass, "<init>", "()V");
1680 jmethodID contains_jmethod = env->GetMethodID(arraylist_jclass, "contains", "(Ljava/lang/Object;)Z");
1682 jmethodID add_jmethod = env->GetMethodID(arraylist_jclass, "add", "(Ljava/lang/Object;)Z");
1699 jmethodID inf_contains_jmethod = env->GetMethodID(list_jclass, "contains", "(Ljava/lang/Object;)Z");
1709 jmethodID obj_constructor = env->GetMethodID(obj_jclass, "<init>", "()V");
/art/compiler/jni/
H A Djni_compiler_test.cc113 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig);
125 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V");
811 jmethodID jmethod = env->GetMethodID(jklass, "fooI", "(I)I");

Completed in 3710 milliseconds