Home | History | Annotate | Download | only in libxml2

Lines Matching defs:URI

45 #include <libxml/uri.h>
791 { "base", 0, 2, 2, 1, 0, 0, 0, "document base uri ",
2300 * @URI: URI for the dtd, or NULL
2303 * Creates a new HTML document without a DTD node if @URI and @ExternalID
2309 htmlNewDocNoDtD(const xmlChar *URI, const xmlChar *ExternalID) {
2339 (URI != NULL))
2340 xmlCreateIntSubset(cur, BAD_CAST "html", ExternalID, URI);
2346 * @URI: URI for the dtd, or NULL
2354 htmlNewDoc(const xmlChar *URI, const xmlChar *ExternalID) {
2355 if ((URI == NULL) && (ExternalID == NULL))
2360 return(htmlNewDocNoDtD(URI, ExternalID));
3064 xmlChar *URI = NULL;
3075 URI = htmlParseSystemLiteral(ctxt);
3076 if (URI == NULL) {
3078 "htmlParseExternalID: SYSTEM, no URI\n", NULL, NULL);
3097 URI = htmlParseSystemLiteral(ctxt);
3100 return(URI);
3386 xmlChar *URI = NULL;
3413 URI = htmlParseExternalID(ctxt, &ExternalID);
3431 ctxt->sax->internalSubset(ctxt->userData, name, ExternalID, URI);
3436 if (URI != NULL) xmlFree(URI);
6099 * @filename: an optional file name or URI