Lines Matching refs:trav
44 xmlNodePtr trav; in cleanup_xml_node() local
47 trav = node->children; in cleanup_xml_node()
48 while (trav != NULL) { in cleanup_xml_node()
54 if (trav->type == XML_TEXT_NODE) { in cleanup_xml_node()
55 if (is_blank(trav->content)) { in cleanup_xml_node()
56 del = trav; in cleanup_xml_node()
58 } else if ((trav->type != XML_ELEMENT_NODE) && in cleanup_xml_node()
59 (trav->type != XML_CDATA_SECTION_NODE)) { in cleanup_xml_node()
60 del = trav; in cleanup_xml_node()
61 } else if (trav->children != NULL) { in cleanup_xml_node()
62 cleanup_xml_node(trav); in cleanup_xml_node()
64 trav = trav->next; in cleanup_xml_node()