Lines Matching refs:child
714 for child in element.getchildren():
715 if child.tag == "return":
716 return_type = child.get( "type", "void" )
717 elif child.tag == "param":
718 param = self.context.factory.create_parameter(child, self.context)
916 for child in element.getchildren():
917 if child.tag == "category":
918 self.process_category( child )
919 elif child.tag == "OpenGLAPI":
920 self.process_OpenGLAPI( file_name, child )
921 elif child.tag == '{http://www.w3.org/2001/XInclude}include':
922 href = child.get('href')
936 for child in cat.getchildren():
937 if child.tag == "function":
938 func_name = real_function_name( child )
940 temp_name = child.get( "name" )
945 func.process_element( child )
947 func = self.factory.create_function( child, self )
954 elif child.tag == "enum":
955 enum = self.factory.create_enum( child, self, cat_name )
957 elif child.tag == "type":
958 t = self.factory.create_type( child, self, cat_name )