Home | History | Annotate | Download | only in libxml2

Lines Matching refs:ns_uri

4849  * @ns_uri:  the function namespace URI
4858 const xmlChar *ns_uri, xmlXPathFunction f) {
4869 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL));
4870 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f)));
4922 * @ns_uri: the function namespace URI
4931 const xmlChar *ns_uri) {
4943 ret = f(ctxt->funcLookupData, name, ns_uri);
4951 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri);
4997 * @ns_uri: the variable namespace URI
5007 const xmlChar *ns_uri,
5019 return(xmlHashRemoveEntry2(ctxt->varHash, name, ns_uri,
5021 return(xmlHashUpdateEntry2(ctxt->varHash, name, ns_uri,
5072 * @ns_uri: the variable namespace URI
5081 const xmlChar *ns_uri) {
5089 (ctxt->varLookupData, name, ns_uri);
5099 xmlHashLookup2(ctxt->varHash, name, ns_uri)));
5121 * @ns_uri: the namespace name
5123 * Register a new namespace. If @ns_uri is NULL it unregisters
5130 const xmlChar *ns_uri) {
5142 if (ns_uri == NULL)
5145 return(xmlHashUpdateEntry(ctxt->nsHash, prefix, (void *) xmlStrdup(ns_uri),