Lines Matching full:ns_uri
4779 * @ns_uri: the function namespace URI
4788 const xmlChar *ns_uri, xmlXPathFunction f) {
4799 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL));
4800 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f)));
4852 * @ns_uri: the function namespace URI
4861 const xmlChar *ns_uri) {
4873 ret = f(ctxt->funcLookupData, name, ns_uri);
4881 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri);
4927 * @ns_uri: the variable namespace URI
4937 const xmlChar *ns_uri,
4949 return(xmlHashRemoveEntry2(ctxt->varHash, name, ns_uri,
4951 return(xmlHashUpdateEntry2(ctxt->varHash, name, ns_uri,
5002 * @ns_uri: the variable namespace URI
5011 const xmlChar *ns_uri) {
5019 (ctxt->varLookupData, name, ns_uri);
5029 xmlHashLookup2(ctxt->varHash, name, ns_uri)));
5051 * @ns_uri: the namespace name
5053 * Register a new namespace. If @ns_uri is NULL it unregisters
5060 const xmlChar *ns_uri) {
5072 if (ns_uri == NULL)
5075 return(xmlHashUpdateEntry(ctxt->nsHash, prefix, (void *) xmlStrdup(ns_uri),