Home | History | Annotate | Download | only in libxml2

Lines Matching refs:ns_uri

4854  * @ns_uri:  the function namespace URI
4863 const xmlChar *ns_uri, xmlXPathFunction f) {
4874 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL));
4875 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f)));
4927 * @ns_uri: the function namespace URI
4936 const xmlChar *ns_uri) {
4948 ret = f(ctxt->funcLookupData, name, ns_uri);
4956 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri);
5002 * @ns_uri: the variable namespace URI
5012 const xmlChar *ns_uri,
5024 return(xmlHashRemoveEntry2(ctxt->varHash, name, ns_uri,
5026 return(xmlHashUpdateEntry2(ctxt->varHash, name, ns_uri,
5077 * @ns_uri: the variable namespace URI
5086 const xmlChar *ns_uri) {
5094 (ctxt->varLookupData, name, ns_uri);
5104 xmlHashLookup2(ctxt->varHash, name, ns_uri)));
5126 * @ns_uri: the namespace name
5128 * Register a new namespace. If @ns_uri is NULL it unregisters
5135 const xmlChar *ns_uri) {
5147 if (ns_uri == NULL)
5150 return(xmlHashUpdateEntry(ctxt->nsHash, prefix, (void *) xmlStrdup(ns_uri),