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

Lines Matching refs:URI

54     xmlChar              *URI; /* the fully resolved resource URL */
55 xmlChar *fragment; /* the fragment in the URI */
201 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI);
205 if (ref->URI != NULL)
206 xmlFree(ref->URI);
217 * @URI: the resource URI
224 xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI,
229 xmlGenericError(xmlGenericErrorContext, "New ref %s\n", URI);
237 if (URI == NULL)
238 ret->URI = NULL;
240 ret->URI = xmlStrdup(URI);
496 xmlChar *URI;
538 * compute the URI
542 URI = xmlBuildURI(href, ctxt->doc->URL);
544 URI = xmlBuildURI(href, base);
546 if (URI == NULL) {
554 URI = xmlBuildURI(eschref, escbase);
566 if (URI == NULL) {
576 uri = xmlParseURI((const char *)URI);
579 "invalid value URI %s\n", URI);
582 xmlFree(URI);
595 "Invalid fragment identifier in URI %s use the xpointer attribute\n",
596 URI);
600 xmlFree(URI);
607 xmlFree(URI);
610 "invalid value URI %s\n", URI);
1288 if (ent->URI != NULL)
1289 ret->URI = xmlStrdup(ent->URI);
1421 "invalid value URI %s\n", url);
1439 "invalid value URI %s\n", url);
1443 "invalid value URI %s\n", url);
1463 if ((xmlStrEqual(URL, ctxt->incTab[i]->URI)) &&
1513 if (xmlStrEqual(URL, ctxt->incTab[i]->URI)) {
1706 * URI base is different than (relative to) the context base
1712 "trying to build relative URI from %s\n", URL);
1714 /* If the URI doesn't contain a slash, it's not relative */
1734 * the specified xml:base or the relative URI
1812 "invalid value URI %s\n", url);
1826 "invalid value URI %s\n", url);
2032 xmlChar *URI;
2072 * compute the URI
2076 URI = xmlBuildURI(href, ctxt->doc->URL);
2078 URI = xmlBuildURI(href, base);
2080 if (URI == NULL) {
2088 URI = xmlBuildURI(eschref, escbase);
2094 if (URI == NULL) {
2108 xmlGenericError(xmlGenericErrorContext, "URI: %s\n", URI);
2118 ret = xmlXIncludeLoadDoc(ctxt, URI, nr);
2119 /* xmlXIncludeGetFragment(ctxt, cur, URI); */
2121 ret = xmlXIncludeLoadTxt(ctxt, URI, nr);
2156 URI);
2162 if (URI != NULL)
2163 xmlFree(URI);