Home
last modified time | relevance | path

Searched refs:split (Results 1 – 25 of 94) sorted by relevance

1234

/development/tools/axl/
Dchewperf.py13 rawLines = f.split('\n')
17 line = rawLines[x].split()
20 ts = int(rawLines[x - 1].split()[-1])
29 rawLines = f.split('\r\n')
36 chewed = [int(line.split()[5]), int(line.split()[7])]
47 rawLines = f.split('\n')
50 sidx = lines[0].split().index("Pulled")
52 chewed = [[int(x.split()[sidx + 2]), int(x.split()[sidx + 4])] for x in lines]
/development/scripts/
Dupdate_crate_tests.py169 … subprocess.check_output(cmd, shell=True, stderr=subprocess.DEVNULL, text=True).strip().split("\n")
183 .strip().split("\n"))
209 mapping_path = file.split("/TEST_MAPPING")[0].split("//")[1]
235 rule_type, _, mod = rdep.split(" ")
241 rdep_path = mod.split(":")[0]
242 rdep_test = mod.split(":")[1].split("--")[0]
283 self.dir_rel = self.dir.split(env.ANDROID_BUILD_TOP)[1]
Dacov-llvm.py110 status = status.split('\n')
112 line.split(':\t')[1] for line in status if line.startswith('SigCgt')
121 pids = [pid.strip() for pid in output.split()]
158 pids = adb_shell(['pidof'] + args.procnames, text=True).split()
/development/vndk/snapshot/
Dutils.py125 return path.split('/')[1].split('-')[1]
137 return path.split('/')[0]
193 return output.split()[2]
/development/tools/winscope/src/parsers/events/operations/
Dadd_cuj_properties.ts67 .split(',');
72 .split(',');
84 return data.slice(1, data.length - 2).split(',');
/development/tools/winscope/src/parsers/events/
Dparser_eventlog.ts70 const splitLogs = allLogsString.split('\n');
95 .split(':', 2)
98 .split(' ')
/development/tools/winscope/src/viewers/common/
Dui_hierarchy_tree_node.ts63 return this.showHeading ? this.id.split(' ')[0].split('.')[0] : undefined;
/development/tools/ota_analysis/src/services/
Dpayload_nonab.js38 let /** Array<String> */ lines = partition.rawText.split('\n')
75 let elements = line.split(' ')
141 let elements = rangeset.split(',')
Dmap_parser.js52 let /** Array<String> */fileEntries = mapText.split('\n')
57 let /** Array<String> */ elements = entry.split(' ')
/development/build/
DAndroid.bp64 "split-select",
83 "split-select",
104 "split-select",
141 "split-select.exe",
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DAMControl.java53 ProcessBuilder factory = new ProcessBuilder(cmd.split(" ")); in execCmd()
76 lineCount, cmd.split(" ")[0], output.toString())); in execCmd()
/development/samples/ReceiveContentDemo/src/com/example/android/receivecontent/
DMyReceiver.java64 Pair<ContentInfo, ContentInfo> split = Utils.partition(contentInfo, in onReceiveContent() local
66 ContentInfo uriContent = split.first; in onReceiveContent()
67 ContentInfo remaining = split.second; in onReceiveContent()
/development/tools/idegen/src/com/android/idegen/
DMakeFileParser.java66 return Splitter.on(VALUE_DELIMITER).trimResults().omitEmptyStrings().split(str); in .trimResults()
123 arr = line.split(":=");
125 arr = line.split("\\+=");
170 String[] tokens = value.split(" ");
/development/tools/winscope/src/viewers/viewer_view_capture/operations/
Dsimplify_names.ts26 node.setDisplayName(node.name.split('.').slice(-1)[0]);
/development/tools/winscope/src/viewers/common/operations/
Dsimplify_names.ts26 const classParts = (node.name + '').split('.');
/development/vndk/tools/sourcedr/ninja/
Dlist_installed_file_from_source.py48 for path in args.installed_filter.split(':'))
56 for path in args.source_filter.split(':')))
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DEncodedStringValue.java211 public EncodedStringValue[] split(String pattern) { in split() method in EncodedStringValue
212 String[] temp = getString().split(pattern); in split()
230 String[] values = src.split(";"); in extract()
/development/samples/TicTacToeLib/
DREADME.txt4 split an APK into multiple projects.
/development/samples/browseable/ActionBarCompat-Styled/
D_index.jd9 split action bar when running on a device with a narrow display, and show three tabs.
/development/tools/winscope/src/parsers/perfetto/
Dfake_proto_builder.ts33 .split('.')
/development/tools/repo_diff/service/repodiff/tools/
Dclear_service_account_keys.py21 key_id, created_at, expires_at = line.split()
/development/tools/otagui/
Dota_interface.py45 self.partial = self.partial.split(',')
70 basic_info['target_name'] = self.target.split('/')[-1]
72 basic_info['incremental_name'] = self.incremental.split('/')[-1]
279 command += args['extra'].strip().split(' ')
/development/tools/winscope/src/common/
Dtimestamp_converter.ts256 const [datetime, ns] = timestampHuman.split('.');
270 const usedUnits = timestampHuman.split(/[0-9]+/).filter((it) => it !== '');
272 .split(/[a-z]+/)
/development/tools/privapp_permissions/
Dprivapp_permissions.py211 for p in partitions.split(','):
338 if len(output.split()) > 1:
359 + ' -type d | grep -v obj').split()
372 partitions.append('/'.join(privapp_dirs[i].split('/')[:-1]))
451 return get_output('find %s -name "*.apk"' % priv_app_dir).split()
704 raw_lines = txt.split('\n')
723 raw_lines = txt.split('\n')
/development/vndk/tools/elfcheck/
Dfix_android_mk_prebuilt.py43 key, value = var.split('=', 1)

1234