Home
last modified time | relevance | path

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

1234

/build/make/tools/releasetools/
Dtest_check_partition_sizes.py36 """.split("\n"))
46 """.split("\n")))
52 """.split("\n")))
63 """.split("\n")))
69 """.split("\n")))
76 """.split("\n")))
92 """.split("\n")))
100 """.split("\n")))
108 """.split("\n")))
117 """.split("\n")))
[all …]
Dsign_target_files_apks.py749 tags = set(tags.split(","))
772 for line in data.split("\n"):
776 key, value = line.split("=", 1)
779 pieces = value.split("/")
783 pieces = value.split("/")
787 pieces = value.split(" ")
795 value = value.split()
825 keylist = input_tf_zip.read("META/otakeys.txt").split()
832 for k in extra_recovery_keys.split()]
916 for param in in_cmdline.split():
[all …]
Dsign_target_files_apks749 tags = set(tags.split(","))
772 for line in data.split("\n"):
776 key, value = line.split("=", 1)
779 pieces = value.split("/")
783 pieces = value.split("/")
787 pieces = value.split(" ")
795 value = value.split()
825 keylist = input_tf_zip.read("META/otakeys.txt").split()
832 for k in extra_recovery_keys.split()]
916 for param in in_cmdline.split():
[all …]
Dsign_apex.py90 versions = a.split(",")
92 key, value = v.split(":")
97 names, key = a.split("=")
98 names = names.split(",")
Dbuild_super_image.py82 block_devices = shlex.split(info_dict.get("super_block_devices", "").strip())
83 groups = shlex.split(info_dict.get("super_partition_groups", "").strip())
111 partition_list = shlex.split(
153 partition_list = shlex.split(
200 return BuildSuperImageFromDict(common.LoadDictionaryFromLines(lines.split("\n")), out)
Dcheck_ota_package_signature.py115 digest_line = sig.rstrip().split('\n')[-1]
116 digest_string = digest_line.split(':')[3]
131 digest_line = decrypted_output.rstrip().split('\n')[-1]
132 digest_string = digest_line.split(':')[3].lower()
Dvalidate_target_files.py103 for file_range in file_ranges.extra['text_str'].split(' '):
178 lines = script.read().strip().split('\n')
183 assert len(check_partition.split(':')) == 4
200 recovery_sha1 = flash_partition.split(':')[3]
212 source_info = source_partition.split(':')
230 recovery_info = target_partition.split(':')
372 "avb_custom_images_partition_list", "").strip().split()
394 first_image_name = boot_images.split()[0]
431 key, value = line.split("=", 1)
Dedify_generator.py55 parts = cmd.split("\0", 1)
173 tokens = filename.split(':')
233 for option in mount_options_by_format.split("|"):
235 key, value = option.split("=", 1)
249 for i in comment.split("\n"):
299 tokens = srcfile.split(':')
376 lst = s.split(':')
Dcommon.py493 source_order = source_order_val.split(",")
589 for prop in self.oem_props.split():
605 path = os.path.join(input_file, *fn.split("/"))
654 d = LoadDictionaryFromLines(read_helper("META/misc_info.txt").split("\n"))
710 for b in boot_images.split():
753 name, value = line.split("=", 1)
814 for line in data.split('\n'):
827 name, value = line.split("=", 1)
836 tokens = line.split()
865 lines = ReadFromInputFile(self.input_file, import_path).split('\n')
[all …]
Dcheck_target_files_vintf.py71 odm_skus = info_dict.get('vintf_odm_manifest_skus', '').strip().split()
75 vendor_skus = info_dict.get('vintf_vendor_manifest_skus', '').strip().split()
179 paths = out.strip().split('\n')
Dcheck_partition_sizes.py139 info_dict.get("super_block_devices", "").strip().split()
215 max_size, info_dict["dynamic_partition_list"].strip().split(),
218 groups = info_dict.get("super_partition_groups", "").strip().split()
229 info_dict["super_{}_partition_list".format(group)].strip().split())
/build/make/tools/droiddoc/templates-pdk/assets/
Dmicrotemplate.js24 .split("<%").join("\t")
27 .split("\t").join("');")
28 .split("%>").join("p.push('")
29 .split("\r").join("\\'")
Dandroid-developer-resource-browser.js24 var keywords = $(this).val().split(/\s+/g);
198 var pairs = paramStr.split('&');
200 var p = pairs[i].split('=');
/build/make/tools/
Dparsedeps.py103 (tgt,prereq) = line.split(':', 1)
114 split = line.split()
115 cmd = split[0]
116 if len(split) == 2 and cmd == "dep":
117 tgt = split[1]
122 elif len(split) == 3 and cmd == "trace":
123 tgt = split[1]
124 prereq = split[2]
Dcheck_radio_versions.py33 key, value = line.split()[1].split("=", 1)
40 key, fn = item.split(":", 1)
45 values = values.split("|")
62 h, v = line.split()
Dproduct_debug.py25 return (key, "\n".join(val.split()))
28 words = line.split("=", 1)
35 lines = text.split()
53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
59 href = s.split(",", 1)[1].strip()[:-1]
Dcompare_fileslist.py39 lines = map(string.split, lines)
85 combo = input.split(os.path.sep)[1]
Djava-layers.py72 self.parts = [(dep.lower.split('.'),dep) for dep in deps.itervalues()]
108 pkg = pkg.split(".")
128 lines = [(n,s.split("#")[0].strip()) for (n,s) in lines]
130 lines = [(n,s.split()) for (n,s) in lines]
202 statements = [s.strip() for s in text.split(";")]
/build/soong/androidmk/parser/
Dmake_strings.go146 split := splitFunc(s, n)
148 if len(split) > n {
151 n -= len(split)
154 curMs.appendString(split[0])
156 for _, r := range split[1:] {
/build/soong/cmd/zip2zip/
Dzip2zip.go253 split := strings.SplitN(s, ":", 2)
254 if len(split) == 2 {
255 return split[0], split[1]
257 return split[0], ""
/build/soong/cmd/extract_apks/bundle_proto/
Dconfig.proto16 // Resources to be always kept in the master split.
45 // Resources to keep in the master split.
47 // Resource IDs to be kept in master split.
49 // Resource names to be kept in master split.
100 // If set to 'true', indicates that APKs should *not* be split by this
150 // is split/assets/example.apk, this will be assets/example.apk).
/build/make/tools/warn/
Dwarn_common.py158 raw_path, line_number_str, _ = warning_line.split(':', 2)
170 split_line = warning_line.split(':')
219 parts = path.split('/')
318 platform_version = 'R' + line.split('chrome-')[1].split('_')[0]
322 board_name = m.group(1).split('/')[2]
434 split_output = compiler_output.split(':', 3) # 3 = max splits
437 col_number = int(split_output[2].split(' ')[0])
/build/soong/scripts/
Dgen-kotlin-build-file.py28 for arg in arg_line.split():
69 for entry in c.split(':'):
/build/make/core/tasks/
Dfind-shareduid-violation.py50 for l in manifest.split('\n'):
52 return l.split('"')[-2]
/build/soong/cmd/pom2mk/
Dpom2mk.go46 split := strings.SplitN(v, "=", 2)
47 if len(split) != 2 {
50 regex, err := regexp.Compile(split[0])
56 repl: split[1],
81 split := strings.SplitN(v, "=", 2)
82 if len(split) != 2 {
85 d[split[0]] = strings.Split(split[1], ",")

1234