| 1475 | } |
| 1476 | |
| 1477 | jfloat CallStaticFloatMethod(jclass clazz, |
| 1478 | jmethodID methodID, ...) { |
| 1479 | va_list args; |
| 1480 | jfloat result; |
| 1481 | va_start(args,methodID); |
| 1482 | result = functions->CallStaticFloatMethodV(this,clazz,methodID,args); |
| 1483 | va_end(args); |
| 1484 | return result; |
| 1485 | } |
| 1486 | jfloat CallStaticFloatMethodV(jclass clazz, |
| 1487 | jmethodID methodID, va_list args) { |
| 1488 | return functions->CallStaticFloatMethodV(this,clazz,methodID,args); |
nothing calls this directly
no test coverage detected