Home | History | Annotate | Download | only in libxml2

Lines Matching defs:nsList

6371 	    xmlNsPtr *nsList, *cur;
6377 nsList = xmlGetNsList(node->doc, node);
6378 if (nsList == NULL) {
6383 cur = nsList;
6399 xmlFree(nsList);
7814 * @nsList: a list of ns-structs
7817 * Searches for a ns-decl with the given prefix in @nsList.
7823 xmlTreeNSListLookupByPrefix(xmlNsPtr nsList, const xmlChar *prefix)
7825 if (nsList == NULL)
7829 ns = nsList;