Home
last modified time | relevance | path

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

/xnu-8796.101.5/tools/lldbmacros/core/
H A Dcvalue.py434 def __format__(self, format_spec): argument
436 typechar = format_spec[-1] if len(format_spec) else ''
439 return format(int(self), format_spec)
442 return format(float(self), format_spec)
445 return format(str(self), format_spec)
450 return format(float(self), format_spec)
452 return format(int(self), format_spec)
454 return format(str(self), format_spec)
H A Dstandard.py172 for text, field_name, format_spec, conv in \
234 result.append(self.format_field(obj, format_spec))