Home
last modified time | relevance | path

Searched refs:strLength (Results 1 – 1 of 1) sorted by relevance

/device/sample/frameworks/PlatformLibrary/jni/
DPlatformLibrary.cpp118 jsize strLength = env->GetStringLength(str); in PlatformLibrary_reverseString() local
133 jchar tempChars[strLength]; in PlatformLibrary_reverseString()
134 for (int i = 0; i < strLength; i++) { in PlatformLibrary_reverseString()
135 tempChars[i] = strChars[strLength -1 -i]; in PlatformLibrary_reverseString()
148 jstring result = env->NewString(tempChars, strLength); in PlatformLibrary_reverseString()