• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/libxml2-26/libxml2/

Lines Matching refs:URI

1085 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI);
1128 * @uriAttrName: the attribute holding the URI-Reference
1565 * Remove entries in the XML catalog where the value or the URI
1619 * Returns the URI of the resource or NULL if not found
1843 * @URI: the URI
1849 * Implements (or tries to) 7.2.2. URI Resolution
1852 * Returns the URI of the resource or NULL if not found
1855 xmlCatalogXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI) {
1866 if (URI == NULL)
1884 if (xmlStrEqual(URI, cur->name)) {
1887 "Found URI match %s\n", cur->name);
1894 (!xmlStrncmp(URI, cur->name, len))) {
1900 if (!xmlStrncmp(URI, cur->name, xmlStrlen(cur->name)))
1917 ret = xmlStrcat(ret, &URI[lenrewrite]);
1932 (!xmlStrncmp(URI, cur->name, xmlStrlen(cur->name)))) {
1949 "Trying URI delegate %s\n", cur->URL);
1951 cur->children, URI);
1971 ret = xmlCatalogListXMLResolveURI(cur->children, URI);
1995 * Returns the URI of the resource or NULL if not found
2079 * @URI: the URI
2081 * Do a complete resolution lookup of an URI for a list of catalogs
2083 * Implements (or tries to) 7.2. URI Resolution
2086 * Returns the URI of the resource or NULL if not found
2089 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI) {
2095 if (URI == NULL)
2098 if (!xmlStrncmp(URI, BAD_CAST XML_URN_PUBID, sizeof(XML_URN_PUBID) - 1)) {
2099 urnID = xmlCatalogUnWrapURN(URI);
2103 "URN ID %s expanded to NULL\n", URI);
2119 ret = xmlCatalogXMLResolveURI(catal->children, URI);
2599 * Returns the URI of the resource or NULL if not found
2844 * Returns the URI of the resource or NULL if not found, it must be freed
2886 * @URI: the URI
2888 * Do a complete resolution lookup of an URI
2890 * Returns the URI of the resource or NULL if not found, it must be freed
2894 xmlACatalogResolveURI(xmlCatalogPtr catal, const xmlChar *URI) {
2897 if ((URI == NULL) || (catal == NULL))
2902 "Resolve URI %s\n", URI);
2905 ret = xmlCatalogListXMLResolveURI(catal->xml, URI);
2911 sgml = xmlCatalogSGMLResolve(catal, NULL, URI);
3340 * Returns the URI of the resource or NULL if not found, it must be freed
3356 * @URI: the URI
3358 * Do a complete resolution lookup of an URI
3360 * Returns the URI of the resource or NULL if not found, it must be freed
3364 xmlCatalogResolveURI(const xmlChar *URI) {
3370 ret = xmlACatalogResolveURI(xmlDefaultCatalog, URI);
3653 * Returns the URI of the resource or NULL if not found, it must be freed
3693 * @URI: the URI
3695 * Do a complete resolution lookup of an URI using a
3698 * Returns the URI of the resource or NULL if not found, it must be freed
3702 xmlCatalogLocalResolveURI(void *catalogs, const xmlChar *URI) {
3709 if (URI == NULL)
3714 "Resolve URI %s\n", URI);
3719 ret = xmlCatalogListXMLResolveURI(catal, URI);