Home
last modified time | relevance | path

Searched refs:BasicFormatter (Results 1 – 3 of 3) sorted by relevance

/llvm-project/lldb/utils/lui/
H A Dlldbutil.py993 class BasicFormatter(object): class
1020 class ChildVisitingFormatter(BasicFormatter):
1036 BasicFormatter.format(self, value, buffer=output)
1038 BasicFormatter.format(self, child, buffer=output, indent=self.cindent)
1043 class RecursiveDecentFormatter(BasicFormatter):
1062 BasicFormatter.format(self, value, buffer=output, indent=self.lindent)
1066 BasicFormatter.format(self, child, buffer=output, indent=new_indent)
1072 BasicFormatter.format(self, child, buffer=output, indent=new_indent)
/llvm-project/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1416 class BasicFormatter(object):
1443 class ChildVisitingFormatter(BasicFormatter):
1459 BasicFormatter.format(self, value, buffer=output)
1461 BasicFormatter.format(self, child, buffer=output, indent=self.cindent)
1466 class RecursiveDecentFormatter(BasicFormatter):
1485 BasicFormatter.format(self, value, buffer=output, indent=self.lindent)
1489 BasicFormatter.format(self, child, buffer=output, indent=new_indent)
1495 BasicFormatter.format(self, child, buffer=output, indent=new_indent)
1447 class BasicFormatter(object): global() class
/llvm-project/lldb/test/API/python_api/value/
H A DTestValueAPI.py84 fmt = lldbutil.BasicFormatter()