Lines Matching refs:self
8 def __init__(self, name, type, start_line, **other_stuff): argument
9 self.name = name
10 self.type = type
11 self.declaration_start_line = start_line
12 self.sections = {}
13 self.sections_start_lines = {}
14 self.parameterlist = []
15 self.parameterdesc_start_lines = []
16 self.parameterdescs = {}
17 self.parametertypes = {}
23 self.other_stuff = other_stuff
25 def get(self, key, default = None): argument
26 return self.other_stuff.get(key, default)
28 def __getitem__(self, key): argument
29 return self.get(key)
34 def set_sections(self, sections, start_lines): argument
35 self.sections = sections
36 self.section_start_lines = start_lines
38 def set_params(self, names, descs, types, starts): argument
39 self.parameterlist = names
40 self.parameterdescs = descs
41 self.parametertypes = types
42 self.parameterdesc_start_lines = starts