Searched defs:decoded (Results 1 - 2 of 2) sorted by relevance

/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DPinyinDecoderService.java58 native static String nativeImGetPyStr(boolean decoded); argument
60 native static int nativeImGetPyStrLen(boolean decoded); argument
199 public String imGetPyStr(boolean decoded) {
200 return nativeImGetPyStr(decoded);
203 public int imGetPyStrLen(boolean decoded) {
204 return nativeImGetPyStrLen(decoded);
/packages/inputmethods/PinyinIME/jni/android/
H A Dcom_android_inputmethod_pinyin_PinyinDecoderService.cpp129 jboolean decoded) {
131 const char *py = im_get_sps_str(&py_len); // py_len gets decoded length
133 if (!decoded)
150 jboolean decoded) {
152 const char *py = im_get_sps_str(&py_len); // py_len gets decoded length
154 if (!decoded)
128 nativeImGetPyStr(JNIEnv* env, jclass jclazz, jboolean decoded) argument
149 nativeImGetPyStrLen(JNIEnv* env, jclass jclazz, jboolean decoded) argument

Completed in 713 milliseconds