Lines Matching refs:child
724 for child in element:
725 if child.tag == "return":
726 return_type = child.get( "type", "void" )
727 elif child.tag == "param":
728 param = self.context.factory.create_parameter(child, self.context)
884 for child in element:
885 if child.tag == "category":
886 self.process_category( child )
887 elif child.tag == "OpenGLAPI":
888 self.process_OpenGLAPI( file_name, child )
889 elif child.tag == '{http://www.w3.org/2001/XInclude}include':
890 href = child.get('href')
904 for child in cat:
905 if child.tag == "function":
906 func_name = real_function_name( child )
908 temp_name = child.get( "name" )
913 func.process_element( child )
915 func = self.factory.create_function( child, self )
922 elif child.tag == "enum":
923 enum = self.factory.create_enum( child, self, cat_name )
925 elif child.tag == "type":
926 t = self.factory.create_type( child, self, cat_name )