Home
last modified time | relevance | path

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

/xnu-11417.101.15/tools/lldbmacros/core/ !
H A Dcvalue.py423 def __format__(self, format_spec): argument
425 typechar = format_spec[-1] if len(format_spec) else ''
428 return format(int(self), format_spec)
431 return format(float(self), format_spec)
434 return format(str(self), format_spec)
439 return format(float(self), format_spec)
441 return format(int(self), format_spec)
443 return format(str(self), format_spec)
H A Dstandard.py170 for text, field_name, format_spec, conv in \
232 result.append(self.format_field(obj, format_spec))