Home | History | Annotate | Download | only in tools

Lines Matching full:self

131     def __init__(self):
132 self.syscalls = []
133 self.lineno = 0
136 print "%d: %s" % (self.lineno, msg)
138 def parse_line(self, line):
145 E = self.E
226 self.syscalls.append(t)
228 def parse_file(self, file_path):
232 self.lineno += 1
236 self.parse_line(line)
242 def __init__(self,out=sys.stdout):
243 self.out = out
245 def write(self,msg):
246 self.out.write(msg)
248 def writeln(self,msg):
249 self.out.write(msg)
250 self.out.write("\n")
253 def __init__(self):
254 self.line = ""
256 def write(self,msg):
257 self.line += msg
260 def writeln(self,msg):
261 self.line += msg + '\n'
264 def get(self):
265 return self.line