MCPcopy Create free account
hub / github.com/HumbleNet/HumbleNet / juceString

Function juceString

3rdparty/Amalgamate/juce_core_amalgam.cpp:26071–26078  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26069namespace
26070{
26071 String juceString (JNIEnv* env, jstring s)
26072 {
26073 const char* const utf8 = env->GetStringUTFChars (s, nullptr);
26074 CharPointer_UTF8 utf8CP (utf8);
26075 const String result (utf8CP);
26076 env->ReleaseStringUTFChars (s, utf8);
26077 return result;
26078 }
26079
26080 String juceString (jstring s)
26081 {

Callers 3

WebInputStreamMethod · 0.85
initialiseMethod · 0.85
getSystemPropertyFunction · 0.85

Calls 1

getEnvFunction · 0.85

Tested by

no test coverage detected