Searched refs:format_spec (Results 1 – 2 of 2) sorted by relevance
| /xnu-11215.1.10/tools/lldbmacros/core/ |
| H A D | cvalue.py | 424 def __format__(self, format_spec): argument 426 typechar = format_spec[-1] if len(format_spec) else '' 429 return format(int(self), format_spec) 432 return format(float(self), format_spec) 435 return format(str(self), format_spec) 440 return format(float(self), format_spec) 442 return format(int(self), format_spec) 444 return format(str(self), format_spec)
|
| H A D | standard.py | 168 for text, field_name, format_spec, conv in \ 230 result.append(self.format_field(obj, format_spec))
|