Home
last modified time | relevance | path

Searched refs:_INDENT (Results 1 – 2 of 2) sorted by relevance

/tools/treble/split/
Dmanifest_diff.py33 _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')
/tools/acloud/list/
Dinstance.py73 _INDENT = " " * 3 variable
264 representation.append("%s IP: %s" % (_INDENT, self._ip))
265 representation.append("%s create time: %s" % (_INDENT, self._createtime))
266 representation.append("%s elapse time: %s" % (_INDENT, self._elapsed_time))
267 representation.append("%s status: %s" % (_INDENT, self._status))
268 representation.append("%s avd type: %s" % (_INDENT, self._avd_type))
269 representation.append("%s display: %s" % (_INDENT, self._display))
270 representation.append("%s vnc: 127.0.0.1:%s" % (_INDENT, self._vnc_port))
271 representation.append("%s zone: %s" % (_INDENT, self._zone))
272 representation.append("%s webrtc port: %s" % (_INDENT, self._webrtc_port))
[all …]