Home | History | Annotate | Download | only in 004-JniTest

Lines Matching refs:GetMethodID

121   jmethodID getFieldMetodId = env->GetMethodID(class_clazz, "getField",
138 jmethodID getBooleanMetodId = env->GetMethodID(field_clazz, "getBoolean",
173 jmethodID miranda_method = env->GetMethodID(abstract_class, "inInterface", "()Z");
387 super_constructor_(GetMethodID(super_, true, "<init>")),
388 super_static_(GetMethodID(super_, false, "staticMethod")),
389 super_nonstatic_(GetMethodID(super_, true, "nonstaticMethod")),
390 sub_constructor_(GetMethodID(sub_, true, "<init>")),
391 sub_static_(GetMethodID(sub_, false, "staticMethod")),
392 sub_nonstatic_(GetMethodID(sub_, true, "nonstaticMethod")),
432 jmethodID GetMethodID(jclass c, bool nonstatic, const char* method_name) {
434 env_->GetMethodID(c, method_name, "()V") :
578 jmethodID mid1 = env->GetMethodID(c, "<init>", "()V");
581 jmethodID mid2 = env->GetMethodID(c, "<init>", "([B)V");
584 jmethodID mid3 = env->GetMethodID(c, "<init>", "([C)V");
587 jmethodID mid4 = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V");
648 return reinterpret_cast<jlong>(env->GetMethodID(c, "a", "()V"));
697 jmethodID new_method = env_->GetMethodID(concrete_class_, "<init>", "()V");
705 jmethodID method_id = env_->GetMethodID(decl_class, method, "()V");
712 jmethodID to_string = env_->GetMethodID(
737 jmethodID method_id = env->GetMethodID(lambda_class, method, "()V");