Home
last modified time | relevance | path

Searched refs:row (Results 1 – 19 of 19) sorted by relevance

/build/bazel/scripts/difftool/diffs/
Dbloaty.py49 def _print_diff_row(self, row, ignore_keys): argument
52 for k, v in row.items()
55 return row[self.data_source] + ": { " + ", ".join(f"{a[0]}: {a[1]}" for a in attrs) + " }"
62 for row in diffreader:
63 compileunit = row["compileunits"]
66 filesize = row["filesize"]
68 left_bigger[compileunit].append(row)
70 right_bigger[compileunit].append(row)
77 for row in data:
78 if row[self.data_source] and row[self.data_source][0] == "[":
[all …]
/build/make/tools/perf/
Dpretty.py33 for row in data:
35 if row == SEPARATOR:
41 for i in range(len(row)):
42 cell = row[i] if row[i] else ""
Dformat_benchmarks110 for row in zip(*self._cols):
111 if row.count(row[0]) == len(row):
113 table.append([""] * len(self._titles) + [col for col in row])
121 for row in self._rows:
122 table.append([str(row)]
123 + self._fixed_cols[row]
124 + [str(self._data.get((col, row), "")) for col in self._cols])
/build/soong/scripts/hiddenapi/
Dverify_overlaps.py39 for row in reader:
40 signature = row["signature"]
41 trie.add(signature, row)
72 for row in rows:
73 signature = row["signature"]
74 dict_signature_to_row[signature] = row
90 for row in reader:
91 signature = row["signature"]
92 dict_signature_to_row[signature] = row
Dmerge_csv.py115 for row in all_rows:
116 writer.writerow(row)
Dsignature_patterns.py153 for row in dict_reader(stream):
154 signature = row['signature']
/build/bazel/scripts/incremental_build/
Dpretty.py34 def _normalize_rebuild(row: Row):
35 row["description"] = re.sub(
36 r"^(rebuild)-[\d+](.*)$", "\\1\\2", row.get("description")
39 def _get_tagged_build_type(row: Row) -> str:
40 build_type = row.get("build_type")
41 tag = row.get("tag")
45 return list(dict.fromkeys(_get_tagged_build_type(row) for row in rows).keys())
95 def acceptable(row: Row) -> bool:
96 failure = row.get("build_result") == "FAILED"
118 all_rows: list[Row] = [row for row in reader if acceptable(row)]
[all …]
Dperf_metrics.py222 for row in rows:
224 for col in row:
291 row = {e.id: util.hhmmss(e.real_time) for e in events}
293 rows.append(row)
DREADME.md14 Each row in `metrics.csv` has the timings of various "phases" of a build.
/build/soong/bloaty/
Dbloaty_merger.py50 for row in section_reader:
52 section.name = row["sections"]
53 section.vm_size = int(row["vmsize"])
54 section.file_size = int(row["filesize"])
/build/make/tools/
Dmk2bp_partition.py74 for row in reader:
76 partition = row[2]
77 makefile_by_partition.setdefault(partition, set()).add(row[0])
92 row = ["The total count of make files is ", count_makefile]
93 writer.writerow(row)
Dmk2bp_catalog.py1021 row = ["Filename", "Module", "Partitions", "Easy", "Unblocked Clean", "Unblocked",
1024 row.append(analyzer.title)
1025 csvout.writerow(row)
1033 row = [filename, module]
1035 row.append(";".join(sorted(set([get_partition_from_installed(HOST_OUT_ROOT, PRODUCT_OUT,
1040 row.append(1
1044 row.append(1
1048 row.append(1 if self.soong.contains_unblocked_modules(makefile.filename) else "")
1050 row.append(1 if self.soong.contains_blocked_modules(makefile.filename) else "")
1052 row.append(1 if is_clean(makefile) else "")
[all …]
/build/make/tools/droiddoc/templates-pdk/assets/
Dsearch_autocomplete.js9 function set_row_selected(row, selected) argument
11 var c1 = row.cells[0];
22 function set_row_values(toroot, row, match) argument
24 var link = row.cells[0].childNodes[0];
Dandroid-developer-core.css535 .show-row {
536 display: table-row;
538 .hide-row {
/build/bazel/scripts/difftool/
Daction_diff_notebook.py187 for row in diff:
188 print(row)
/build/soong/bin/
Dsoongdbg101 for row in module_formatter(node.module):
102 row = html.escape(row)
283 for row in o:
284 if row:
285 result.append(row)
/build/make/tools/droiddoc/templates-pdk/assets/design/
Ddefault.css47 #main-row {
49 #main-row:after {
55 * html #main-row {
128 .layout-content-row {
131 .layout-content-row:after {
137 * html .layout-content-row {
542 .figure-row {
546 .figure-row .figure {
549 .figure-row .figure + .figure {
/build/make/tools/aconfig/aflags/src/
Dmain.rs279 let row = format_flag_row(&flag, &padding_info); in list() localVariable
280 result.push_str(&row); in list()
/build/soong/ui/terminal/
Dsmart_status.go423 func (ansiImpl) setCursor(row, column int) string {
425 return fmt.Sprintf("\x1b[%d;%dH", row, column)