Home | History | Annotate | Download | only in libxml2

Lines Matching defs:URI

4854  * @ns_uri:  the function namespace URI
4927 * @ns_uri: the function namespace URI
5002 * @ns_uri: the variable namespace URI
5077 * @ns_uri: the variable namespace URI
8757 * Implement the namespace-uri() XPath function
8758 * string namespace-uri(node-set?)
8759 * The namespace-uri function returns a string containing the
8760 * namespace URI of the expanded name of the node in the argument
8763 * URI, an empty string is returned. If the argument is omitted it
12109 const xmlChar *URI = NULL;
12148 URI = xmlXPathNsLookup(xpctxt, prefix);
12149 if (URI == NULL) {
12432 (xmlStrEqual(URI, cur->ns->href)))
12449 (xmlStrEqual(URI, cur->ns->href)))
12481 (xmlStrEqual(URI, cur->ns->href)))
12500 (xmlStrEqual(URI,
13500 const xmlChar *URI;
13502 URI = xmlXPathNsLookup(ctxt->context, op->value5);
13503 if (URI == NULL) {
13511 op->value4, URI);
13554 const xmlChar *URI = NULL;
13561 URI = xmlXPathNsLookup(ctxt->context, op->value5);
13562 if (URI == NULL) {
13571 op->value4, URI);
13580 op->cacheURI = (void *) URI;
15202 * Implement the escape-uri() XPath function
15203 * string escape-uri(string $str, bool $escape-reserved)
15205 * This function applies the URI escaping rules defined in section 2 of [RFC
15206 * 2396] to the string supplied as $uri-part, which typically represents all
15207 * or part of a URI. The effect of the function is to replace any special
15232 * that is to form a single part of a URI, and to false when escaping an
15233 * entire URI or URI reference.
15239 * xf:escape-uri ("gopher://spinaltap.micro.umn.edu/00/Weather/California/Los%20Angeles#ocean"), true())
15241 * xf:escape-uri ("gopher://spinaltap.micro.umn.edu/00/Weather/California/Los%20Angeles#ocean"), false())
15341 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"namespace-uri",
15370 xmlXPathRegisterFuncNS(ctxt, (const xmlChar *)"escape-uri",