| /frameworks/base/tools/protologtool/tests/com/android/protolog/tool/ | 
| D | CommandOptionsTest.kt | 53         CommandOptions(testLine.split(' ').toTypedArray())  in invalidCommand() 64         val cmd = CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses() 82         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_noProtoLogClass() 92         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_noProtoLogImplClass() 102         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_noProtoLogCacheClass() 112         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_noProtoLogGroupClass() 122         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_noProtoLogGroupJar() 133         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_noOutJar() 144         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_noJavaInput() 155         CommandOptions(testLine.split(' ').toTypedArray())  in transformClasses_invalidProtoLogClass() [all …] 
 | 
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ | 
| D | HardwareConfig.java | 120         String split[] = res.split(",");  in HardwareConfig()  local 122         type = Integer.parseInt(split[0]);  in HardwareConfig() 127                     split[1].trim(),            /* uuid */  in HardwareConfig() 128                     Integer.parseInt(split[2]), /* state */  in HardwareConfig() 129                     Integer.parseInt(split[3]), /* ril-model */  in HardwareConfig() 130                     Integer.parseInt(split[4]), /* rat */  in HardwareConfig() 131                     Integer.parseInt(split[5]), /* max-voice */  in HardwareConfig() 132                     Integer.parseInt(split[6]), /* max-data */  in HardwareConfig() 133                     Integer.parseInt(split[7])  /* max-standby */  in HardwareConfig() 139                     split[1].trim(),            /* uuid */  in HardwareConfig() [all …] 
 | 
| /frameworks/base/tools/split-select/ | 
| D | Grouper.cpp | 28 namespace split {  namespace 39         const SplitDescription& split = splits[i];  in groupByMutualExclusivity()  local 40         if (split.config.density != 0) {  in groupByMutualExclusivity() 41             SplitDescription key(split);  in groupByMutualExclusivity() 44             appendValue(densityGroups, key, split);  in groupByMutualExclusivity() 45         } else if (split.abi != abi::Variant_none) {  in groupByMutualExclusivity() 46             SplitDescription key(split);  in groupByMutualExclusivity() 48             appendValue(abiGroups, key, split);  in groupByMutualExclusivity() 51             groups.editTop().add(split);  in groupByMutualExclusivity()
  | 
| D | Android.bp | 32     name: "split-select_defaults", 74     defaults: ["split-select_defaults"], 93     defaults: ["split-select_defaults"], 108 // Build the host executable: split-select 111     name: "split-select", 112     defaults: ["split-select_defaults"],
  | 
| D | SplitSelector_test.cpp | 25 namespace split {  namespace 30     SplitDescription split;  in addSplit()  local 31     if (!SplitDescription::parse(String8(str), &split)) {  in addSplit() 34     splits.add(split);  in addSplit()
  | 
| D | SplitDescription.cpp | 27 namespace split {  namespace 143     SplitDescription split;  in parse()  local 144     if (!AaptConfig::parse(configStr, &split.config)) {  in parse() 156     index = parseAbi(parts, index, &split);  in parse() 170         *outSplit = split;  in parse()
  | 
| /frameworks/base/core/java/android/content/ | 
| D | MimeTypeFilter.java | 82         final String[] mimeTypeParts = mimeType.split("/");  in matches() 83         final String[] filterParts = filter.split("/");  in matches() 99         final String[] mimeTypeParts = mimeType.split("/");  in matches() 101             final String[] filterParts = filter.split("/");  in matches() 121         final String[] filterParts = filter.split("/");  in matches() 123             final String[] mimeTypeParts = mimeType.split("/");  in matches() 144         final String[] filterParts = filter.split("/");  in matchesMany() 146             final String[] mimeTypeParts = mimeType.split("/");  in matchesMany()
  | 
| /frameworks/av/media/module/codecs/amrwb/enc/inc/ | 
| D | qpisf_2s.tab | 21  * Quantization tables for two-stage of ISFs (split by 2 in 1st stage) 49  *  isf codebooks:  two-stage VQ with split-by-5 in 2nd stage        * 63  * 1st stage codebook; 1st split:   isf0 to isf8 326  * 1st stage codebook; 2nd split:   isf9 to isf15 589  * 2nd stage codebook; 1st split:   isf2_0 to isf2_2 663  * 2nd stage codebook; 2nd split:   isf2_3 to isf2_5 800  * 2nd stage codebook; 3rd split:   isf2_6 to isf2_8 937  * 2nd stage codebook; 4th split:   isf2_9 to isf2_11 977  * 2nd stage codebook; 5th split:   isf2_12 to isf2_15 1019  *  isf codebooks:  two-stage VQ with split-by-3 in 2nd stage        *
  | 
| D | qisf_ns.tab | 22  * Quantization tables for split by 5 VQ of ISFs for a background noise database 45  *  isf codebooks:  split-by-5 VQ                                    * 57  * 1st split:   isf0 to isf1 130  * 2nd split:   isf2 to isf4 201  * 3rd split:   isf5 to isf7 272  * 4th split:   isf8 to isf11 311  * 5th split:   isf12 to isf15
  | 
| /frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/ | 
| D | StringSplitPerfTest.java | 40             "this,is,a,simple,example".split(",");  in timeStringSplitComma() 48             "this.is.a.simple.example".split("\\.");  in timeStringSplitLiteralDot() 56             "this\nis\na\nsimple\nexample\n".split("\n");  in timeStringSplitNewline() 65             p.split("this,is,a,simple,example");  in timePatternSplitComma() 74             p.split("this.is.a.simple.example");  in timePatternSplitLiteralDot() 82             "this,is,a,harder,example".split("[,]");  in timeStringSplitHard()
  | 
| /frameworks/base/libs/androidfw/tests/data/basic/ | 
| D | build | 27     --split basic_hdpi-v4.apk:hdpi \ 28     --split basic_xhdpi-v4.apk:xhdpi \ 29     --split basic_xxhdpi-v4.apk:xxhdpi \ 30     --split basic_de_fr.apk:de,fr \
  | 
| /frameworks/base/core/java/android/content/pm/ | 
| D | FallbackCategoryProvider.java | 55                 final String[] split = line.split(",");  in loadFallbacks()  local 56                 if (split.length == 2) {  in loadFallbacks() 57                     sFallbacks.put(split[0], Integer.parseInt(split[1]));  in loadFallbacks()
  | 
| /frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/split/ | 
| D | SplitScreenUtils.java | 17 package com.android.wm.shell.common.split; 19 import static com.android.wm.shell.common.split.SplitScreenConstants.CONTROLLED_ACTIVITY_TYPES; 20 import static com.android.wm.shell.common.split.SplitScreenConstants.CONTROLLED_WINDOWING_MODES; 21 import static com.android.wm.shell.common.split.SplitScreenConstants.SPLIT_POSITION_BOTTOM_OR_RIGHT; 22 import static com.android.wm.shell.common.split.SplitScreenConstants.SPLIT_POSITION_TOP_OR_LEFT; 23 import static com.android.wm.shell.common.split.SplitScreenConstants.SPLIT_POSITION_UNDEFINED;
  | 
| /frameworks/libs/binary_translation/kernel_api/tools/ | 
| D | extract_syscalls_from_kernel_src.py | 32     words = line.split() 64     words = line.split() 93     words = line.split() 179       words = line.split() 185       words = line.replace('(', ' ').replace(')', ' ').replace(',', ' ').split() 189       words = line.replace('(', ' ').replace(')', ' ').replace(',', ' ').split() 193       words = line.replace('(', ' ').replace(')', ' ').replace(',', ' ').split() 197       words = line.replace('(', ' ').replace(')', ' ').replace(',', ' ').split()
  | 
| /frameworks/base/services/core/java/com/android/server/pm/ | 
| D | ApkChecksums.java | 317             final String split = filesToChecksum.get(i).first;  in getChecksums()  local 323                 getAvailableApkChecksums(split, file, optional | required, installerPackageName,  in getChecksums() 345             final String split = filesToChecksum.get(i).first;  in processRequiredChecksums()  local 360                     getRequiredApkChecksums(split, file, required, checksums);  in processRequiredChecksums() 387     private static void getAvailableApkChecksums(String split, File file,  in getAvailableApkChecksums()  argument 398             ApkChecksum checksum = extractHashFromFS(split, filePath);  in getAvailableApkChecksums() 408                     split, filePath, types);  in getAvailableApkChecksums() 416         getInstallerChecksums(split, file, types, installerPackageName, trustedInstallers,  in getAvailableApkChecksums() 420     private static void getInstallerChecksums(String split, File file,  in getInstallerChecksums()  argument 506                             new ApkChecksum(split, digest, installerPackageName, trustedCertBytes));  in getInstallerChecksums() [all …] 
 | 
| /frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/ | 
| D | Utils.java | 31         String[] classes = classList.split(",");  in getTargetsFromLegacyJackConfig() 32         String[] requests = requestList.split(",");  in getTargetsFromLegacyJackConfig() 33         String[] resets = resetList.split(",");  in getTargetsFromLegacyJackConfig() 55         String[] c = arg.split(",");  in getScopedTarget()
  | 
| /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/ | 
| D | Volume.java | 77             String[] colorSplit = color_string.split("\\}\\s*\\,\\s*\\{");  in Look() 78             String[] opacitySplit = opacity_string.split("\\}\\s*\\,\\s*\\{");  in Look() 101             String[] split = numList.split(",");  in readNumbers()  local 102             int[] ret = new int[split.length];  in readNumbers() 104                 ret[i] = Integer.decode(split[i].trim());  in readNumbers()
  | 
| /frameworks/base/media/java/android/media/ | 
| D | SRTRenderer.java | 92             String[] lines = paragraph.split("\\r?\\n");  in onData() 125                 String[] startEnd = header.split("-->");  in onData() 195         long hours = Long.parseLong(in.split(":")[0].trim());  in parseMs() 196         long minutes = Long.parseLong(in.split(":")[1].trim());  in parseMs() 197         long seconds = Long.parseLong(in.split(":")[2].split(",")[0].trim());  in parseMs() 198         long millies = Long.parseLong(in.split(":")[2].split(",")[1].trim());  in parseMs()
  | 
| /frameworks/base/telephony/common/com/android/internal/telephony/ | 
| D | SipMessageParsingUtils.java | 126             String[] subHeaders = header.second.split(SUBHEADER_VALUE_SEPARATOR);  in getTransactionId() 144         String[] params = headerValue.split(PARAM_SEPARATOR);  in getParameterValue() 150             String[] pair = param.split(PARAM_KEY_VALUE_SEPARATOR);  in getParameterValue() 214         String[] splitLine = startLine.split(" ", 3);  in splitStartLineAndVerify() 231             String[] splitParams = header.second.split(PARAM_SEPARATOR);  in getAcceptContactFeatureTags() 240                 String[] paramKeyValue = ft.split(PARAM_KEY_VALUE_SEPARATOR, 2);  in getAcceptContactFeatureTags() 265         String[] splitValues = paramValue.split(",");  in splitParamValue() 327         String[] headerLines = headerString.split("\\r?\\n");  in parseHeaders() 359             String[] pair = line.split(HEADER_KEY_VALUE_SEPARATOR, 2);  in parseHeaders()
  | 
| /frameworks/base/tools/apilint/ | 
| D | deprecated_at_birth.py | 64         raw = raw.split() 65         self.split = list(raw) 96         raw = re.split("[\s(),;]+", raw) 99         self.split = list(raw) 132         raw = raw.split() 133         self.split = list(raw) 147             self.extends_path = self.extends.split(".") 153         self.fullname_path = self.fullname.split(".") 170         raw = raw.split() 172         self.name_path = self.name.split(".")
  | 
| /frameworks/base/core/java/android/speech/tts/ | 
| D | TtsEngines.java | 388             String[] split = localeString.split(  in parseLocaleString()  local 390             language = split[0].toLowerCase();  in parseLocaleString() 391             if (split.length == 0) {  in parseLocaleString() 396             if (split.length > 3) {  in parseLocaleString() 401             if (split.length >= 2) {  in parseLocaleString() 402                 country = split[1].toUpperCase();  in parseLocaleString() 404             if (split.length >= 3) {  in parseLocaleString() 405                 variant = split[2];  in parseLocaleString() 505         String[] prefValues = prefValue.split(",");  in parseEnginePrefFromList() 555             String[] prefValues = list.split(",");  in updateValueInCommaSeparatedList()
  | 
| /frameworks/base/apct-tests/perftests/core/src/android/database/ | 
| D | SQLiteDatabaseIoPerfTest.java | 158                 String[] split = line.split(":");  in getIoStats()  local 159                 if (split.length == 2) {  in getIoStats() 161                         String key = split[0].trim();  in getIoStats() 162                         Long value = Long.valueOf(split[1].trim());  in getIoStats()
  | 
| /frameworks/base/tools/aapt2/optimize/ | 
| D | MultiApkGenerator_test.cpp | 116   std::unique_ptr<ResourceTable> split =  in TEST_F()  local 119   ResourceTable* new_table = split.get();  in TEST_F() 143   std::unique_ptr<ResourceTable> split =  in TEST_F()  local 146   ResourceTable* new_table = split.get();  in TEST_F() 168   std::unique_ptr<ResourceTable> split =  in TEST_F()  local 171   ResourceTable* new_table = split.get();  in TEST_F()
  | 
| /frameworks/base/graphics/java/android/graphics/ | 
| D | Rect.java | 722             final Rect split = splits[i];  in splitVertically()  local 723             split.left = left + (splitWidth * i);  in splitVertically() 724             split.top = top;  in splitVertically() 725             split.right = split.left + splitWidth;  in splitVertically() 726             split.bottom = bottom;  in splitVertically() 739             final Rect split = outSplits[i];  in splitHorizontally()  local 740             split.left = left;  in splitHorizontally() 741             split.top = top + (splitHeight * i);  in splitHorizontally() 742             split.right = right;  in splitHorizontally() 743             split.bottom = split.top + splitHeight;  in splitHorizontally()
  | 
| /frameworks/base/core/java/android/net/ | 
| D | PacProxySelector.java | 97         String[] split = response.split(";");  in parseResponse()  local 99         for (String s : split) {  in parseResponse() 123             String[] hostPort = hostPortString.split(":");  in proxyFromHostPort()
  |