Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DCodesArrayParser.java50 final String[] strs = codesArraySpec.split(VERTICAL_BAR_REGEX, -1); in getLabelSpec() local
51 if (strs.length <= 1) { in getLabelSpec()
54 return strs[0]; in getLabelSpec()
68 final String[] strs = codesArraySpec.split(VERTICAL_BAR_REGEX, -1); in getCodeSpec() local
69 if (strs.length <= 1) { in getCodeSpec()
72 return TextUtils.isEmpty(strs[1]) ? strs[0] : strs[1]; in getCodeSpec()
76 final String[] strs = codesArraySpec.split(VERTICAL_BAR_REGEX, -1); in getMinSupportSdkVersion() local
77 if (strs.length <= 2) { in getMinSupportSdkVersion()
81 return Integer.parseInt(strs[2]); in getMinSupportSdkVersion()
/packages/inputmethods/LatinIME/native/jni/src/
Ddefines.h149 char **strs = backtrace_symbols(callstack, frames); in showStackTrace() local
155 AKLOGI("%s", strs[i]); in showStackTrace()
157 free(strs); in showStackTrace()