Home | History | Annotate | Download | only in trace

Lines Matching defs:Formatter

33 class Formatter:
34 '''Plain formatter'''
58 class AnsiFormatter(Formatter):
59 '''Formatter for plain-text files which outputs ANSI escape codes. See
78 Formatter.function(self, name)
83 Formatter.variable(self, name)
88 Formatter.literal(self, value)
93 Formatter.address(self, value)
97 class WindowsConsoleFormatter(Formatter):
98 '''Formatter for the Windows Console. See
123 Formatter.__init__(self, stream)
147 Formatter.function(self, name)
152 Formatter.variable(self, name)
157 Formatter.literal(self, value)
162 Formatter.address(self, value)
172 return Formatter(stream)