• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/

Lines Matching refs:URI

1087 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI);
1130 * @uriAttrName: the attribute holding the URI-Reference
1569 * Remove entries in the XML catalog where the value or the URI
1623 * Returns the URI of the resource or NULL if not found
1847 * @URI: the URI
1853 * Implements (or tries to) 7.2.2. URI Resolution
1856 * Returns the URI of the resource or NULL if not found
1859 xmlCatalogXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI) {
1870 if (URI == NULL)
1888 if (xmlStrEqual(URI, cur->name)) {
1891 "Found URI match %s\n", cur->name);
1898 (!xmlStrncmp(URI, cur->name, len))) {
1904 if (!xmlStrncmp(URI, cur->name, xmlStrlen(cur->name)))
1921 ret = xmlStrcat(ret, &URI[lenrewrite]);
1936 (!xmlStrncmp(URI, cur->name, xmlStrlen(cur->name)))) {
1953 "Trying URI delegate %s\n", cur->URL);
1955 cur->children, URI);
1975 ret = xmlCatalogListXMLResolveURI(cur->children, URI);
1999 * Returns the URI of the resource or NULL if not found
2083 * @URI: the URI
2085 * Do a complete resolution lookup of an URI for a list of catalogs
2087 * Implements (or tries to) 7.2. URI Resolution
2090 * Returns the URI of the resource or NULL if not found
2093 xmlCatalogListXMLResolveURI(xmlCatalogEntryPtr catal, const xmlChar *URI) {
2099 if (URI == NULL)
2102 if (!xmlStrncmp(URI, BAD_CAST XML_URN_PUBID, sizeof(XML_URN_PUBID) - 1)) {
2103 urnID = xmlCatalogUnWrapURN(URI);
2107 "URN ID %s expanded to NULL\n", URI);
2123 ret = xmlCatalogXMLResolveURI(catal->children, URI);
2603 * Returns the URI of the resource or NULL if not found
2848 * Returns the URI of the resource or NULL if not found, it must be freed
2890 * @URI: the URI
2892 * Do a complete resolution lookup of an URI
2894 * Returns the URI of the resource or NULL if not found, it must be freed
2898 xmlACatalogResolveURI(xmlCatalogPtr catal, const xmlChar *URI) {
2901 if ((URI == NULL) || (catal == NULL))
2906 "Resolve URI %s\n", URI);
2909 ret = xmlCatalogListXMLResolveURI(catal->xml, URI);
2915 sgml = xmlCatalogSGMLResolve(catal, NULL, URI);
3344 * Returns the URI of the resource or NULL if not found, it must be freed
3360 * @URI: the URI
3362 * Do a complete resolution lookup of an URI
3364 * Returns the URI of the resource or NULL if not found, it must be freed
3368 xmlCatalogResolveURI(const xmlChar *URI) {
3374 ret = xmlACatalogResolveURI(xmlDefaultCatalog, URI);
3657 * Returns the URI of the resource or NULL if not found, it must be freed
3697 * @URI: the URI
3699 * Do a complete resolution lookup of an URI using a
3702 * Returns the URI of the resource or NULL if not found, it must be freed
3706 xmlCatalogLocalResolveURI(void *catalogs, const xmlChar *URI) {
3713 if (URI == NULL)
3718 "Resolve URI %s\n", URI);
3723 ret = xmlCatalogListXMLResolveURI(catal, URI);