Home | History | Annotate | Download | only in libxml2

Lines Matching refs:nsList

6541 	    xmlNsPtr *nsList, *cur;
6547 nsList = xmlGetNsList(node->doc, node);
6548 if (nsList == NULL) {
6553 cur = nsList;
6569 xmlFree(nsList);
8032 * @nsList: a list of ns-structs
8035 * Searches for a ns-decl with the given prefix in @nsList.
8041 xmlTreeNSListLookupByPrefix(xmlNsPtr nsList, const xmlChar *prefix)
8043 if (nsList == NULL)
8047 ns = nsList;