Searched refs:FormattedDiff (Results 1 – 2 of 2) sorted by relevance
/external/pigweed/pw_bloat/py/pw_bloat/ |
D | binary_diff.py | 23 FormattedDiff = collections.namedtuple('FormattedDiff', variable 49 def formatted_segments(self) -> Generator[FormattedDiff, None, None]: 53 yield FormattedDiff('(all)', '(same)', '0', '(same)') 63 yield FormattedDiff( 71 yield FormattedDiff('(all)', '(same)', '0', '(same)')
|
D | bloat_output.py | 21 from pw_bloat.binary_diff import BinaryDiff, FormattedDiff 103 column_widths = [len(field) for field in FormattedDiff._fields] 120 for i, val in enumerate(FormattedDiff._fields)
|