Searched refs:strs (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Virtualization/authfs/src/ |
D | main.rs | 148 let strs: Vec<&str> = option.split(':').collect(); in parse_remote_ro_file_option() localVariable 149 if strs.len() != 4 { in parse_remote_ro_file_option() 153 ino: strs[0].parse::<Inode>()?, in parse_remote_ro_file_option() 154 remote_id: strs[1].parse::<i32>()?, in parse_remote_ro_file_option() 155 file_size: strs[2].parse::<u64>()?, in parse_remote_ro_file_option() 156 _certificate_path: PathBuf::from(strs[3]), in parse_remote_ro_file_option() 161 let strs: Vec<&str> = option.split(':').collect(); in parse_remote_ro_file_unverified_option() localVariable 162 if strs.len() != 3 { in parse_remote_ro_file_unverified_option() 166 ino: strs[0].parse::<Inode>()?, in parse_remote_ro_file_unverified_option() 167 remote_id: strs[1].parse::<i32>()?, in parse_remote_ro_file_unverified_option() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | CodesArrayParser.java | 50 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/ |
D | defines.h | 149 char **strs = backtrace_symbols(callstack, frames); in showStackTrace() local 155 AKLOGI("%s", strs[i]); in showStackTrace() 157 free(strs); in showStackTrace()
|