| 341 | } |
| 342 | |
| 343 | bool UTF32ToUTF16(std::u32string_view utf32, std::u16string& outUtf16) |
| 344 | { |
| 345 | return utfConvert(utf32, outUtf16, ConvertUTF32toUTF16); |
| 346 | } |
| 347 | |
| 348 | #if (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID) |
| 349 | std::string getStringUTFCharsJNI(JNIEnv* env, jstring srcjStr, bool* ret) |
nothing calls this directly
no test coverage detected