Home
last modified time | relevance | path

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

123456789

/system/extras/torq/src/
Ddevice.py48 output_lines = command_output.stdout.decode("utf-8").split("\n")
53 words_in_line = line.split('\t')
145 output_lines = command_output.stdout.decode("utf-8").split("\n")[1:-1]
146 return [int((line.split("{", 1)[1]).split(":", 1)[0]) for line in
162 return int(command_output.stdout.decode("utf-8").split()[0])
211 ).stdout.decode("utf-8").split("\n")[0]
219 capture_output=True).stderr.decode("utf-8").split("\n")[0] != "":
238 capture_output=True).stdout.decode("utf-8").split("\n")[0]
258 lines = output.stdout.decode("utf-8").split("\n")
266 event = line[2:].split(" ")[0]
/system/sepolicy/tests/
Dfc_sort.py63 self.type = context.split(":")[2]
71 split = line.split()
72 path = split[0].strip()
73 context = split[-1].strip()
75 if len(split) == 3:
76 file_type = split[1].strip()
Dapex_sepolicy_tests.py207 split = line.split()
208 if len(split) != 2:
210 path, context = split[0], split[1]
211 if len(context.split(':')) != 4:
213 tcontext = context.split(':')[2]
Dsearchpolicy.py63 tclass = set(args.tclass.split(","))
67 perms = set(args.perms.split(","))
/system/extras/perf2cfg/perf2cfg/
Dparse.py71 parts = line.split(':', 1)
97 parts = line.split(None, 1)
123 parts = line.split(None, 1)
/system/core/init/
Dcompare-bootcharts.py86 blocks = f.read().decode('utf-8').split('\n\n')
88 lines = b.split('\n')
115 segs = line.split(' ')
/system/logging/liblog/
Dpmsg_reader.cpp222 const char* split = NULL; in __android_log_pmsg_file_read() local
238 if (split) { in __android_log_pmsg_file_read()
241 split = cp; in __android_log_pmsg_file_read()
244 if (*cp || !split) { in __android_log_pmsg_file_read()
255 split = strchr(prefix, ':'); in __android_log_pmsg_file_read()
256 if (split) { in __android_log_pmsg_file_read()
259 split = strchr(prefix, '/'); in __android_log_pmsg_file_read()
260 if (!split) { in __android_log_pmsg_file_read()
263 offset = split - prefix; in __android_log_pmsg_file_read()
269 strncmp(&msg[offset + sizeof(prio)], split + 1, prefix_len - offset)) { in __android_log_pmsg_file_read()
/system/linkerconfig/devicetest/src/android/linkerconfig/gts/utils/elements/
DSection.java60 for (String additionalNamespace : additionalNamespaces.split(",")) { in parseConfiguration()
73 String[] commands = namespaceMatcher.group(2).split("\\."); in parseConfiguration()
116 for (String linkTarget : value.split(",")) { in parseConfiguration()
135 String[] libs = value.split(":"); in parseConfiguration()
/system/chre/tools/
Dtodo_checker.py69 .split('\n')
137 .split('\n')
145 return bug_id_line.split(':')[1].strip()
/system/libvintf/include-host/vintf/
DDirmap.h30 std::map<std::string, std::string> splitArgs(const T& args, char split) { in splitArgs() argument
33 auto pos = arg.find(split); in splitArgs()
/system/apex/tools/
Dapexer_with_trim_preprocessing.py66 segs = line.split(' ')
98 segs = args.libs_to_trim.split(',')
99 libs_to_trim = [v+'.so' for v in args.libs_to_trim.split(',')]
Dapex_compression_tool.py138 root_digest = RunCommand(avbtool_cmd, verbose=verbose)[0].decode().split(': ')[1].strip()
174 default=os.environ['APEX_COMPRESSION_TOOL_PATH'].split(':')
176 type=lambda s: s.split(':'),
/system/extras/simpleperf/scripts/
Dipc.py62 cpu_cycles = int(line.split()[0].replace(",", ""))
64 columns = line.split()
70 columns = line.split()
/system/extras/tools/
Dgraph_lockdep_chains269 tee /tmp/${progname}.split |
272 fgrep -v -f /tmp/${progname}.short /tmp/${progname}.split
273 rm -f /tmp/${progname}.short /tmp/${progname}.split
/system/incremental_delivery/incfs/
Dsplit.h54 Split(s, delimiters, [out](std::string_view split) { out->emplace_back(split); }); in Split()
/system/cros-codecs/
Dsimple_test.py23 test_lines = test_output.split('\n')
24 golden_lines = golden.split('\n')
/system/vold/model/
DDisk.cpp353 auto split = android::base::Split(line, kSgdiskToken); in readPartitions() local
354 auto it = split.begin(); in readPartitions()
355 if (it == split.end()) continue; in readPartitions()
358 if (++it == split.end()) continue; in readPartitions()
369 if (++it == split.end()) continue; in readPartitions()
378 if (++it == split.end()) continue; in readPartitions()
396 if (++it == split.end()) continue; in readPartitions()
398 if (++it == split.end()) continue; in readPartitions()
/system/tools/aidl/build/
Daidl_to_jni.py48 aidl_signature = aidl_signature.split("|")
53 args = [x for x in args.split(",") if x]
/system/tools/mkbootimg/gki/
Dcertify_bootimg.py159 name, value = line.split('=', 1)
178 shlex.split(info_dict['certify_bootimg_extra_args']))
181 shlex.split(info_dict['certify_bootimg_extra_footer_args']))
233 extra_args.extend(shlex.split(a))
238 extra_footer_args.extend(shlex.split(a))
/system/extras/simpleperf/scripts/purgatorio/templates/
Dmain.js46 const nameArr = name.split('`')
51 name = name.split('(')[0] // drop extra info
104 let callchain = callchains[graph_selection[i]].split("<br>")
195 let callchain = callchains[graph_selection[i]].split("<br>")
/system/apex/apexd/
Dapex_database.cpp114 auto split = Split(package_id, "@"); in ParseMountPoint() local
115 if (split.size() == 2) { in ParseMountPoint()
117 if (!ParseInt(split[1], &version)) { in ParseMountPoint()
120 return std::make_pair(split[0], version); in ParseMountPoint()
/system/cros-codecs/src/codec/vp8/
Dbool_decoder.rs110 let split = 1 + (((self.range - 1) * probability as usize) >> 8); in read_bit() localVariable
116 let bigsplit = split << (BD_VALUE_SIZE - U8_BITS); in read_bit()
119 self.range -= split; in read_bit()
123 self.range = split; in read_bit()
/system/tools/xsdc/src/main/java/com/android/xsdc/java/
DUtils.java53 String trimmed = toCamelCase(name.replaceAll("[^A-Za-z0-9_-]", "").split("-")); in toVariableName()
66 name.replaceAll("[^A-Za-z0-9_-]", "").replaceAll("-","_").split("_")); in toClassName()
/system/tools/xsdc/src/main/java/com/android/xsdc/cpp/
DUtils.java56 String trimmed = toCamelCase(name.replaceAll("[^A-Za-z0-9_-]", "").split("-")); in toVariableName()
69 name.replaceAll("[^A-Za-z0-9_-]", "").replaceAll("[\\.-]", "_").split("_")); in toClassName()
/system/tools/mkbootimg/tests/
Dmkbootimg_test.py357 unpack_format_args = shlex.split(result.stdout)
410 mkbootimg_cmds.extend(shlex.split(result.stdout))
449 mkbootimg_cmds.extend(shlex.split(result.stdout))
490 mkbootimg_cmds.extend(shlex.split(result.stdout))
554 mkbootimg_cmds.extend(shlex.split(result.stdout))
610 mkbootimg_cmds.extend(shlex.split(result.stdout))
672 mkbootimg_cmds.extend(shlex.split(result.stdout))
829 unpack_format_args = shlex.split(result.stdout)

123456789