| 70 | } |
| 71 | |
| 72 | jwm::JNILocal<jstring> jwm::StringUTF16::toJString(JNIEnv* env) const { |
| 73 | return jwm::JNILocal<jstring>(env, env->NewString(reinterpret_cast<const jchar*>(c_str()), static_cast<jsize>(length()))); |
| 74 | } |
| 75 | |
| 76 | jwm::StringUTF16 jwm::StringUTF16::makeFromJString(JNIEnv* env, jstring js) { |
| 77 | jwm::StringUTF16 result; |
no outgoing calls
no test coverage detected