Home | History | Annotate | Download | only in trace

Lines Matching defs:Visitor

45     def visit(self, visitor):
61 def visit(self, visitor):
62 visitor.visit_literal(self)
70 def visit(self, visitor):
71 visitor.visit_named_constant(self)
79 def visit(self, visitor):
80 visitor.visit_array(self)
89 def visit(self, visitor):
90 visitor.visit_struct(self)
98 def visit(self, visitor):
99 visitor.visit_pointer(self)
111 def visit(self, visitor):
112 visitor.visit_call(self)
120 def visit(self, visitor):
121 visitor.visit_trace(self)
124 class Visitor: