Lines Matching defs:parser
40 import parse as parser
760 class Interpreter(parser.SimpleTraceDumper):
761 '''Specialization of a trace parser that interprets the calls as it goes
784 parser.SimpleTraceDumper.__init__(self, stream, options, formatter, state)
818 parser.TraceDumper.handle_call(self, call)
849 class DumpStateOptions(parser.ParseOptions):
858 parser.ParseOptions.__init__(self, args)
861 class Main(parser.Main):
881 parser = Interpreter(stream, options, formatter, model.TraceStateData())
882 parser.parse()