Lines Matching refs:attrs
110 def start(self, tag, attrs):
112 print "start %s, %s" % (tag, attrs)
122 if attrs.has_key('name'):
123 self.function = attrs['name']
124 if attrs.has_key('file'):
125 self.function_file = attrs['file']
135 if attrs.has_key('name'):
136 self.function_arg_name = attrs['name']
137 if attrs.has_key('type'):
138 self.function_arg_type = attrs['type']
139 if attrs.has_key('info'):
140 self.function_arg_info = attrs['info']
146 if attrs.has_key('type'):
147 self.function_return_type = attrs['type']
148 if attrs.has_key('info'):
149 self.function_return_info = attrs['info']
150 if attrs.has_key('field'):
151 self.function_return_field = attrs['field']
153 enum(attrs['type'],attrs['name'],attrs['value'])