Home | History | Annotate | Download | only in libxml2

Lines Matching defs:URL

207 		      void *user_data, int depth, const xmlChar *URL,
1359 * @URL: the namespace name
1367 nsPush(xmlParserCtxtPtr ctxt, const xmlChar *prefix, const xmlChar *URL)
1374 if (ctxt->nsTab[i + 1] == URL)
1404 ctxt->nsTab[ctxt->nsNr++] = URL;
1602 * Pushes a new element name/prefix/URL on top of the name stack
4698 xmlChar *URL = NULL;
4721 URL = xmlStrndup(base, tmp - base);
4727 if (URL != NULL) {
4728 ctxt->catalogs = xmlCatalogAddLocal(ctxt->catalogs, URL);
4729 xmlFree(URL);
4737 if (URL != NULL)
4738 xmlFree(URL);
6513 * @SystemID: the system identifier (or URL)
8715 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len);
8718 if (*URL != 0) {
8719 uri = xmlParseURI((const char *) URL);
8723 URL, NULL, NULL);
8728 URL, NULL, NULL);
8732 if (URL == ctxt->str_xml_ns) {
8741 (xmlStrEqual(URL,
8758 if (nsPush(ctxt, NULL, URL) > 0) nbNs++;
8765 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len);
8769 if (URL != ctxt->str_xml_ns) {
8779 if (URL == ctxt->str_xml_ns) {
8794 (xmlStrEqual(URL,
8801 if ((URL == NULL) || (URL[0] == 0)) {
8807 uri = xmlParseURI((const char *) URL);
8811 attname, URL, NULL);
8816 attname, URL, NULL);
8831 if (nsPush(ctxt, attname, URL) > 0) nbNs++;
11870 * @SystemID: a NAME* containing the URL to the DTD
11998 * @SystemID: a NAME* containing the URL to the DTD
12020 * @URL: the URL for the entity to load
12035 xmlParseCtxtExternalEntity(xmlParserCtxtPtr ctx, const xmlChar *URL,
12056 if ((URL == NULL) && (ID == NULL))
12069 inputStream = xmlLoadExternalEntity((char *)URL, (char *)ID, ctxt);
12078 directory = xmlParserGetDirectory((char *)URL);
12099 if (ctx->myDoc->URL != NULL) {
12100 newDoc->URL = xmlStrdup(ctx->myDoc->URL);
12237 * @URL: the URL for the entity to load
12250 void *user_data, int depth, const xmlChar *URL,
12268 if ((URL == NULL) && (ID == NULL))
12274 ctxt = xmlCreateEntityParserCtxt(URL, ID, NULL);
12317 if (doc->URL != NULL) {
12318 newDoc->URL = xmlStrdup(doc->URL);
12441 * @URL: the URL for the entity to load
12457 int depth, const xmlChar *URL, const xmlChar *ID, xmlNodePtr *lst) {
12458 return(xmlParseExternalEntityPrivate(doc, NULL, sax, user_data, depth, URL,
13112 * @URL: the entity URL
13123 xmlCreateEntityParserCtxt(const xmlChar *URL, const xmlChar *ID,
13135 uri = xmlBuildURI(URL, base);
13138 inputStream = xmlLoadExternalEntity((char *)URL, (char *)ID, ctxt);
13147 directory = xmlParserGetDirectory((char *)URL);
13177 * @filename: the filename or URL
13180 * Create a parser context for a file or URL content.
14261 * @URL: the base URL to use for the document
14271 xmlDoRead(xmlParserCtxtPtr ctxt, const char *URL, const char *encoding,
14284 if ((URL != NULL) && (ctxt->input != NULL) &&
14286 ctxt->input->filename = (char *) xmlStrdup((const xmlChar *) URL);
14307 * @URL: the base URL to use for the document
14316 xmlReadDoc(const xmlChar * cur, const char *URL, const char *encoding, int options)
14326 return (xmlDoRead(ctxt, URL, encoding, options, 0));
14331 URL
14354 * @URL: the base URL to use for the document
14363 xmlReadMemory(const char *buffer, int size, const char *URL, const char *encoding, int options)
14370 return (xmlDoRead(ctxt, URL, encoding, options, 0));
14376 * @URL: the base URL to use for the document
14387 xmlReadFd(int fd, const char *URL, const char *encoding, int options)
14412 return (xmlDoRead(ctxt, URL, encoding, options, 0));
14420 * @URL: the base URL to use for the document
14430 void *ioctx, const char *URL, const char *encoding, int options)
14455 return (xmlDoRead(ctxt, URL, encoding, options, 0));
14462 * @URL: the base URL to use for the document
14473 const char *URL, const char *encoding, int options)
14489 return (xmlDoRead(ctxt, URL, encoding, options, 1));
14495 * @filename: a file or URL
14530 * @URL: the base URL to use for the document
14541 const char *URL, const char *encoding, int options)
14565 return (xmlDoRead(ctxt, URL, encoding, options, 1));
14572 * @URL: the base URL to use for the document
14585 const char *URL, const char *encoding, int options)
14608 return (xmlDoRead(ctxt, URL, encoding, options, 1));
14617 * @URL: the base URL to use for the document
14629 const char *URL,
14652 return (xmlDoRead(ctxt, URL, encoding, options, 1));