Searched refs:_INDENT (Results 1 – 3 of 3) sorted by relevance
/tools/treble/split/ |
D | manifest_diff.py | 33 _INDENT = (' ' * 2) variable 60 ret_str += textwrap.indent(str(self.attributes), _INDENT) 63 ret_str += textwrap.indent(str(self.linkfiles), _INDENT) 66 ret_str += textwrap.indent(str(self.copyfiles), _INDENT) 89 ret_str += (textwrap.indent(str(self.projects) + '\n', _INDENT) 90 if self.projects else _INDENT + 'No changes found.\n\n') 92 ret_str += (textwrap.indent(str(self.remotes) + '\n', _INDENT) 93 if self.remotes else _INDENT + 'No changes found.\n\n') 95 ret_str += (textwrap.indent(str(self.other) + '\n', _INDENT) 96 if self.other else _INDENT + 'No changes found.\n\n')
|
D | xml_diff.py | 22 _INDENT = (' ' * 2) variable 52 ret_str += textwrap.indent(str(value) + '\n', _INDENT) 56 ret_str += textwrap.indent(str(value) + '\n', _INDENT) 60 ret_str += textwrap.indent(name + ':\n', _INDENT) 61 ret_str += textwrap.indent(str(value) + '\n', _INDENT * 2)
|
/tools/acloud/list/ |
D | instance.py | 85 _INDENT = " " * 3 variable 336 representation.append("%s IP: %s" % (_INDENT, self._ip)) 337 representation.append("%s create time: %s" % (_INDENT, self._createtime)) 338 representation.append("%s elapse time: %s" % (_INDENT, self._elapsed_time)) 339 representation.append("%s status: %s" % (_INDENT, self._status)) 340 representation.append("%s avd type: %s" % (_INDENT, self._avd_type)) 341 representation.append("%s display: %s" % (_INDENT, self._display)) 342 representation.append("%s vnc: 127.0.0.1:%s" % (_INDENT, self._vnc_port)) 343 representation.append("%s zone: %s" % (_INDENT, self._zone)) 344 representation.append("%s autoconnect: %s" % (_INDENT, self._autoconnect)) [all …]
|