Lines Matching refs:GetMethodID
161 jmethodID getFieldMetodId = env->GetMethodID(class_clazz, "getField", in testReflectFieldGetFromAttachedNativeThread()
178 jmethodID getBooleanMetodId = env->GetMethodID(field_clazz, "getBoolean", in testReflectFieldGetFromAttachedNativeThread()
213 jmethodID miranda_method = env->GetMethodID(abstract_class, "inInterface", "()Z"); in Java_Main_testGetMirandaMethodNative()
427 super_constructor_(GetMethodID(super_, true, "<init>")), in JniCallNonvirtualVoidMethodTest()
428 super_static_(GetMethodID(super_, false, "staticMethod")), in JniCallNonvirtualVoidMethodTest()
429 super_nonstatic_(GetMethodID(super_, true, "nonstaticMethod")), in JniCallNonvirtualVoidMethodTest()
430 sub_constructor_(GetMethodID(sub_, true, "<init>")), in JniCallNonvirtualVoidMethodTest()
431 sub_static_(GetMethodID(sub_, false, "staticMethod")), in JniCallNonvirtualVoidMethodTest()
432 sub_nonstatic_(GetMethodID(sub_, true, "nonstaticMethod")), in JniCallNonvirtualVoidMethodTest()
472 jmethodID GetMethodID(jclass c, bool nonstatic, const char* method_name) { in GetMethodID() function in art::JniCallNonvirtualVoidMethodTest
474 env_->GetMethodID(c, method_name, "()V") : in GetMethodID()
618 jmethodID mid1 = env->GetMethodID(c, "<init>", "()V"); in Java_Main_testNewStringObject()
621 jmethodID mid2 = env->GetMethodID(c, "<init>", "([B)V"); in Java_Main_testNewStringObject()
624 jmethodID mid3 = env->GetMethodID(c, "<init>", "([C)V"); in Java_Main_testNewStringObject()
627 jmethodID mid4 = env->GetMethodID(c, "<init>", "(Ljava/lang/String;)V"); in Java_Main_testNewStringObject()
688 return reinterpret_cast<jlong>(env->GetMethodID(c, "a", "()V")); in Java_Main_testGetMethodID()
737 jmethodID new_method = env_->GetMethodID(concrete_class_, "<init>", "()V"); in TestCalls()
745 jmethodID method_id = env_->GetMethodID(decl_class, method, "()V"); in TestCalls()
752 jmethodID to_string = env_->GetMethodID( in TestCalls()
777 jmethodID method_id = env->GetMethodID(lambda_class, method, "()V"); in InvokeSpecificMethod()