Lines Matching refs:attr_iter
319 xml_element_attr* attr_iter = Q_Head(&el->attrs); in xml_element_to_method_description() local
322 while(attr_iter) { in xml_element_to_method_description()
323 if(!strcmp(attr_iter->key, "name")) { in xml_element_to_method_description()
324 name = attr_iter->val; in xml_element_to_method_description()
326 else if(!strcmp(attr_iter->key, "type")) { in xml_element_to_method_description()
327 type = attr_iter->val; in xml_element_to_method_description()
329 else if(!strcmp(attr_iter->key, "basetype")) { in xml_element_to_method_description()
330 basetype = attr_iter->val; in xml_element_to_method_description()
332 else if(!strcmp(attr_iter->key, "desc")) { in xml_element_to_method_description()
333 desc = attr_iter->val; in xml_element_to_method_description()
335 else if(!strcmp(attr_iter->key, "optional")) { in xml_element_to_method_description()
336 if(attr_iter->val && !strcmp(attr_iter->val, "yes")) { in xml_element_to_method_description()
340 else if(!strcmp(attr_iter->key, "default")) { in xml_element_to_method_description()
341 def = attr_iter->val; in xml_element_to_method_description()
343 attr_iter = Q_Next(&el->attrs); in xml_element_to_method_description()