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

Lines Matching refs:URI

53     xmlChar              *URI; /* the fully resolved resource URL */
54 xmlChar *fragment; /* the fragment in the URI */
200 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI);
204 if (ref->URI != NULL)
205 xmlFree(ref->URI);
216 * @URI: the resource URI
223 xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI,
228 xmlGenericError(xmlGenericErrorContext, "New ref %s\n", URI);
236 if (URI == NULL)
237 ret->URI = NULL;
239 ret->URI = xmlStrdup(URI);
495 xmlChar *URI;
537 * compute the URI
541 URI = xmlBuildURI(href, ctxt->doc->URL);
543 URI = xmlBuildURI(href, base);
545 if (URI == NULL) {
553 URI = xmlBuildURI(eschref, escbase);
565 if (URI == NULL) {
575 uri = xmlParseURI((const char *)URI);
578 "invalid value URI %s\n", URI);
581 xmlFree(URI);
594 "Invalid fragment identifier in URI %s use the xpointer attribute\n",
595 URI);
599 xmlFree(URI);
606 xmlFree(URI);
609 "invalid value URI %s\n", URI);
1285 if (ent->URI != NULL)
1286 ret->URI = xmlStrdup(ent->URI);
1418 "invalid value URI %s\n", url);
1436 "invalid value URI %s\n", url);
1440 "invalid value URI %s\n", url);
1460 if ((xmlStrEqual(URL, ctxt->incTab[i]->URI)) &&
1510 if (xmlStrEqual(URL, ctxt->incTab[i]->URI)) {
1703 * URI base is different than (relative to) the context base
1709 "trying to build relative URI from %s\n", URL);
1711 /* If the URI doesn't contain a slash, it's not relative */
1731 * the specified xml:base or the relative URI
1806 "invalid value URI %s\n", url);
1820 "invalid value URI %s\n", url);
2003 xmlChar *URI;
2043 * compute the URI
2047 URI = xmlBuildURI(href, ctxt->doc->URL);
2049 URI = xmlBuildURI(href, base);
2051 if (URI == NULL) {
2059 URI = xmlBuildURI(eschref, escbase);
2065 if (URI == NULL) {
2079 xmlGenericError(xmlGenericErrorContext, "URI: %s\n", URI);
2089 ret = xmlXIncludeLoadDoc(ctxt, URI, nr);
2090 /* xmlXIncludeGetFragment(ctxt, cur, URI); */
2092 ret = xmlXIncludeLoadTxt(ctxt, URI, nr);
2127 URI);
2133 if (URI != NULL)
2134 xmlFree(URI);