Lines Matching refs:strcmp

81       if(name && !strcmp(name, needle)) {  in find_named_value()
320 if(!strcmp(attr_iter->key, "name")) { in xml_element_to_method_description()
323 else if(!strcmp(attr_iter->key, "type")) { in xml_element_to_method_description()
326 else if(!strcmp(attr_iter->key, "basetype")) { in xml_element_to_method_description()
329 else if(!strcmp(attr_iter->key, "desc")) { in xml_element_to_method_description()
332 else if(!strcmp(attr_iter->key, "optional")) { in xml_element_to_method_description()
333 if(attr_iter->val && !strcmp(attr_iter->val, "yes")) { in xml_element_to_method_description()
337 else if(!strcmp(attr_iter->key, "default")) { in xml_element_to_method_description()
344 if(!strcmp(el->name, "value") || !strcmp(el->name, "typeDescription")) { in xml_element_to_method_description()
346 const char* ptype = !strcmp(el->name, "value") ? type : basetype; in xml_element_to_method_description()
349 (!strcmp(ptype, "array") || !strcmp(ptype, "struct") || !strcmp(ptype, "mixed"))) { in xml_element_to_method_description()
366 else if(!strcmp(el->name, "params") || in xml_element_to_method_description()
367 !strcmp(el->name, "returns") || in xml_element_to_method_description()
368 !strcmp(el->name, "signature")) { in xml_element_to_method_description()
371 …xReturn = XMLRPC_CreateVector(!strcmp(el->name, "signature") ? NULL : el->name, xmlrpc_vector_stru… in xml_element_to_method_description()
383 else if(!strcmp(el->name, "methodDescription")) { in xml_element_to_method_description()
397 else if(!strcmp(el->name, "item")) { in xml_element_to_method_description()