Lines Matching refs:GetMethodID

132   jmethodID getFieldMetodId = env->GetMethodID(class_clazz, "getField",  in testReflectFieldGetFromAttachedNativeThread()
149 jmethodID getBooleanMetodId = env->GetMethodID(field_clazz, "getBoolean", in testReflectFieldGetFromAttachedNativeThread()
184 jmethodID miranda_method = env->GetMethodID(abstract_class, "inInterface", "()Z"); in Java_Main_testGetMirandaMethodNative()
398 super_constructor_(GetMethodID(super_, true, "<init>")), in JniCallNonvirtualVoidMethodTest()
399 super_static_(GetMethodID(super_, false, "staticMethod")), in JniCallNonvirtualVoidMethodTest()
400 super_nonstatic_(GetMethodID(super_, true, "nonstaticMethod")), in JniCallNonvirtualVoidMethodTest()
401 sub_constructor_(GetMethodID(sub_, true, "<init>")), in JniCallNonvirtualVoidMethodTest()
402 sub_static_(GetMethodID(sub_, false, "staticMethod")), in JniCallNonvirtualVoidMethodTest()
403 sub_nonstatic_(GetMethodID(sub_, true, "nonstaticMethod")), in JniCallNonvirtualVoidMethodTest()
443 jmethodID GetMethodID(jclass c, bool nonstatic, const char* method_name) { in GetMethodID() function in art::JniCallNonvirtualVoidMethodTest
445 env_->GetMethodID(c, method_name, "()V") : in GetMethodID()
589 jmethodID mid1 = env->GetMethodID(c, "<init>", "()V"); in Java_Main_testNewStringObject()
592 jmethodID mid2 = env->GetMethodID(c, "<init>", "([B)V"); in Java_Main_testNewStringObject()
595 jmethodID mid3 = env->GetMethodID(c, "<init>", "([C)V"); in Java_Main_testNewStringObject()
598 jmethodID mid4 = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V"); in Java_Main_testNewStringObject()
659 return reinterpret_cast<jlong>(env->GetMethodID(c, "a", "()V")); in Java_Main_testGetMethodID()
708 jmethodID new_method = env_->GetMethodID(concrete_class_, "<init>", "()V"); in TestCalls()
716 jmethodID method_id = env_->GetMethodID(decl_class, method, "()V"); in TestCalls()
723 jmethodID to_string = env_->GetMethodID( in TestCalls()
748 jmethodID method_id = env->GetMethodID(lambda_class, method, "()V"); in InvokeSpecificMethod()