Searched refs:GetMethodID (Results 1 - 13 of 13) sorted by path

/art/compiler/driver/
H A Dcompiler_driver_test.cc62 mid_ = env_->GetMethodID(class_, method, signature);
159 jmethodID constructor = env_->GetMethodID(c_class, "<init>", "()V");
/art/compiler/jni/
H A Djni_compiler_test.cc114 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig);
126 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V");
790 jmethodID jmethod = env->GetMethodID(jklass, "fooI", "(I)I");
/art/dalvikvm/
H A Ddalvikvm.cc45 jmethodID mid = env->GetMethodID(method_class, "getModifiers", "()I");
/art/runtime/arch/
H A Dstub_test.cc1957 jmethodID arraylist_constructor = env->GetMethodID(arraylist_jclass, "<init>", "()V");
1959 jmethodID contains_jmethod = env->GetMethodID(
1962 jmethodID add_jmethod = env->GetMethodID(arraylist_jclass, "add", "(Ljava/lang/Object;)Z");
1979 jmethodID inf_contains_jmethod = env->GetMethodID(
1990 jmethodID obj_constructor = env->GetMethodID(obj_jclass, "<init>", "()V");
/art/runtime/
H A Dcheck_jni.cc179 jmethodID GetMethodID() const { function in class:art::VarArgs
862 ArtMethod* m = CheckMethodID(soa, args.GetMethodID());
975 ArtMethod* m = soa.DecodeMethod(args.GetMethodID());
2058 static jmethodID GetMethodID(JNIEnv* env, jclass c, const char* name, const char* sig) { function in class:art::CheckJNI
2648 result.m = baseEnv(env)->GetMethodID(env, c, name, sig);
3606 CheckJNI::GetMethodID,
H A Djni_internal.cc269 jmethodID mid = env->GetMethodID(exception_class, "<init>", signature);
470 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
658 static jmethodID GetMethodID(JNIEnv* env, jclass java_class, const char* name, const char* sig) { function in class:art::JNI
2529 JNI::GetMethodID,
H A Djni_internal_test.cc218 jmethodID method = env_->GetMethodID(nullptr, "<init>", "(Ljava/lang/String;)V");
220 check_jni_abort_catcher.Check(check_jni ? "GetMethodID received NULL jclass"
224 method = env_->GetMethodID(jlnsme, nullptr, "(Ljava/lang/String;)V");
228 method = env_->GetMethodID(jlnsme, "<init>", nullptr);
294 jmethodID mid = env_->GetMethodID(c, "<init>", "()V");
643 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig);
655 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V");
777 TEST_F(JniInternalTest, GetMethodID) {
788 jmethodID method = env_->GetMethodID(jlobject, "foo", "()V");
793 method = env_->GetMethodID(jlobjec
[all...]
H A Dreflection.cc657 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
H A Dwell_known_classes.cc198 env->GetMethodID(c, name, signature);
/art/runtime/native/
H A Djava_lang_reflect_Constructor.cc175 jmethodID ctor = env->GetMethodID(ctorClass, "<init>", "()V");
/art/test/004-JniTest/
H A Djni_test.cc112 jmethodID getFieldMetodId = env->GetMethodID(class_clazz, "getField",
129 jmethodID getBooleanMetodId = env->GetMethodID(field_clazz, "getBoolean",
164 jmethodID miranda_method = env->GetMethodID(abstract_class, "inInterface", "()Z");
378 super_constructor_(GetMethodID(super_, true, "<init>")),
379 super_static_(GetMethodID(super_, false, "staticMethod")),
380 super_nonstatic_(GetMethodID(super_, true, "nonstaticMethod")),
381 sub_constructor_(GetMethodID(sub_, true, "<init>")),
382 sub_static_(GetMethodID(sub_, false, "staticMethod")),
383 sub_nonstatic_(GetMethodID(sub_, true, "nonstaticMethod")),
423 jmethodID GetMethodID(jclas function in class:art::JniCallNonvirtualVoidMethodTest
[all...]
/art/test/044-proxy/
H A Dnative_proxy.cc27 jmethodID mid = env->GetMethodID(native_inf_class, "callback", "()V");
/art/test/115-native-bridge/
H A Dnativebridge.cc74 mid = env->GetMethodID(klass, methods[i].name, nb_method->signature);

Completed in 1014 milliseconds