Home | History | Annotate | Download | only in jni

Lines Matching defs:methodId

355     jmethodID methodId = getMethodID(object, name, signature);
359 callJNIMethodIDA<void>(object, methodId, args);
365 result.l = callJNIMethodIDA<jobject>(object, methodId, args);
368 result.z = callJNIMethodIDA<jboolean>(object, methodId, args);
371 result.b = callJNIMethodIDA<jbyte>(object, methodId, args);
374 result.c = callJNIMethodIDA<jchar>(object, methodId, args);
377 result.s = callJNIMethodIDA<jshort>(object, methodId, args);
380 result.i = callJNIMethodIDA<jint>(object, methodId, args);
383 result.j = callJNIMethodIDA<jlong>(object, methodId, args);
386 result.f = callJNIMethodIDA<jfloat>(object, methodId, args);
389 result.d = callJNIMethodIDA<jdouble>(object, methodId, args);