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

Lines Matching refs:GetMethodID

112   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(jclass c, bool nonstatic, const char* method_name) {
425 env_->GetMethodID(c, method_name, "()V") :
569 jmethodID mid1 = env->GetMethodID(c, "<init>", "()V");
572 jmethodID mid2 = env->GetMethodID(c, "<init>", "([B)V");
575 jmethodID mid3 = env->GetMethodID(c, "<init>", "([C)V");
578 jmethodID mid4 = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V");
639 return reinterpret_cast<jlong>(env->GetMethodID(c, "a", "()V"));
688 jmethodID new_method = env_->GetMethodID(concrete_class_, "<init>", "()V");
696 jmethodID method_id = env_->GetMethodID(decl_class, method, "()V");
703 jmethodID to_string = env_->GetMethodID(
728 jmethodID method_id = env->GetMethodID(lambda_class, method, "()V");