Searched defs:URL (Results 51 - 75 of 87) sorted by relevance

1234

/external/libxml2/
H A Dnanoftp.c126 char *path; /* the path within the URL */
294 * @URL: The URL used to initialize the context
296 * (Re)Initialize an FTP context by parsing the URL and finding
301 xmlNanoFTPScanURL(void *ctx, const char *URL) { argument
320 if (URL == NULL) return;
322 uri = xmlParseURIRaw(URL, 1);
358 * @URL: The URL used to update the context
360 * Update an FTP context by parsing the URL an
370 xmlNanoFTPUpdateURL(void *ctx, const char *URL) argument
427 xmlNanoFTPScanProxy(const char *URL) argument
472 xmlNanoFTPNewCtxt(const char *URL) argument
1993 xmlNanoFTPOpen(const char *URL) argument
[all...]
H A Dnanohttp.c135 char *path; /* the path within the URL */
151 char *location; /* the new URL in case of redirect */
270 * @URL: The URL used to initialize the context
272 * (Re)Initialize an HTTP context by parsing the URL and finding
277 xmlNanoHTTPScanURL(xmlNanoHTTPCtxtPtr ctxt, const char *URL) { argument
300 if (URL == NULL) return;
302 uri = xmlParseURIRaw(URL, 1);
335 * @URL: The proxy URL use
344 xmlNanoHTTPScanProxy(const char *URL) argument
389 xmlNanoHTTPNewCtxt(const char *URL) argument
1226 xmlNanoHTTPOpen(const char *URL, char **contentType) argument
1246 xmlNanoHTTPOpenRedir(const char *URL, char **contentType, char **redir) argument
1347 xmlNanoHTTPMethodRedir(const char *URL, const char *method, const char *input, char **contentType, char **redir, const char *headers, int ilen ) argument
1602 xmlNanoHTTPMethod(const char *URL, const char *method, const char *input, char **contentType, const char *headers, int ilen) argument
1622 xmlNanoHTTPFetch(const char *URL, const char *filename, char **contentType) argument
[all...]
H A Dschematron.c181 const xmlChar *URL; member in struct:_xmlSchematronParserCtxt
580 * @URL: the location of the schema
588 xmlSchematronNewParserCtxt(const char *URL) argument
592 if (URL == NULL)
606 ret->URL = xmlDictLookup(ret->dict, (const xmlChar *) URL, -1);
1090 if (ctxt->URL != NULL) {
1091 doc = xmlReadFile((const char *) ctxt->URL, NULL,
1097 ctxt->URL, NULL);
1111 doc->URL
[all...]
H A Dxinclude.c54 xmlChar *URI; /* the fully resolved resource URL */
77 xmlChar * url; /* the current URL processed */
79 int urlMax; /* size of URL stack */
80 xmlChar * *urlTab; /* URL stack */
328 xmlXIncludeErrMemory(ctxt, NULL, "adding URL");
339 xmlXIncludeErrMemory(ctxt, NULL, "adding URL");
351 * Pops the top URL from the URL stack
415 * @URL: the URL o
420 xmlXIncludeParseFile(xmlXIncludeCtxtPtr ctxt, const char *URL) argument
491 xmlChar *URL; local
1404 xmlChar *URL; local
1798 xmlChar *URL; local
[all...]
H A Dcatalog.c141 xmlChar *URL; /* The expanded URL using the base */ member in struct:_xmlCatalogEntry
275 const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer,
304 if (URL == NULL)
305 URL = value;
306 if (URL != NULL)
307 ret->URL = xmlStrdup(URL);
309 ret->URL = NULL;
353 if (ret->URL !
274 xmlNewCatalogEntry(xmlCatalogEntryType type, const xmlChar *name, const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer, xmlCatalogEntryPtr group) argument
1146 xmlChar *URL = NULL; local
3616 xmlCatalogAddLocal(void *catalogs, const xmlChar *URL) argument
[all...]
H A Dpattern.c924 xmlChar *URL = NULL; local
960 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE);
964 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
980 PUSH(XML_OP_ATTR, NULL, URL);
988 PUSH(XML_OP_ATTR, token, URL);
995 if (URL != NULL)
996 XML_PAT_FREE_STRING(ctxt, URL)
1016 xmlChar *URL = NULL; local
1081 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
1085 XML_PAT_COPY_NSNAME(ctxt, URL, ctx
[all...]
H A Dxmllint.c261 xmllintExternalEntityLoader(const char *URL, const char *ID, argument
268 const char *lastsegment = URL;
269 const char *iter = URL;
287 ret = defaultEntityLoader(URL, ID, ctxt);
296 "Loaded URL=\"%s\" ID=\"%s\"\n",
297 URL ? URL : "(null)",
319 "Loaded URL=\"%s\" ID=\"%s\"\n",
333 if (URL != NULL)
334 warning(ctxt, "failed to load external entity \"%s\"\n", URL);
[all...]
H A DxmlIO.c3834 * case it will handle encoding and update of the base URL in case of
3902 static int xmlNoNetExists(const char *URL) { argument
3905 if (URL == NULL)
3908 if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file://localhost/", 17))
3910 path = &URL[17];
3912 path = &URL[16];
3914 else if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file:///", 8)) {
3916 path = &URL[8];
3918 path = &URL[7];
3921 path = URL;
3941 xmlResolveResourceFromCatalog(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
4015 xmlDefaultExternalEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
4090 xmlLoadExternalEntity(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
4127 xmlNoNetExternalEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
[all...]
H A Dxmlreader.c536 if (cur->URL != NULL) xmlFree((char *) cur->URL);
4199 if ((doc != NULL) && (doc->URL != NULL))
4200 *file = (const char *) doc->URL;
5074 * @URL: the base URL to use for the document
5084 xmlParserInputBufferPtr input, const char *URL,
5162 4, URL);
5167 xmlCreatePushParserCtxt(reader->sax, NULL, NULL, 0, URL);
5185 if (URL
5083 xmlTextReaderSetup(xmlTextReaderPtr reader, xmlParserInputBufferPtr input, const char *URL, const char *encoding, int options) argument
5344 xmlReaderForDoc(const xmlChar * cur, const char *URL, const char *encoding, int options) argument
5394 xmlReaderForMemory(const char *buffer, int size, const char *URL, const char *encoding, int options) argument
5430 xmlReaderForFd(int fd, const char *URL, const char *encoding, int options) argument
5467 xmlReaderForIO(xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
5553 xmlReaderNewDoc(xmlTextReaderPtr reader, const xmlChar * cur, const char *URL, const char *encoding, int options) argument
5617 xmlReaderNewMemory(xmlTextReaderPtr reader, const char *buffer, int size, const char *URL, const char *encoding, int options) argument
5652 xmlReaderNewFd(xmlTextReaderPtr reader, int fd, const char *URL, const char *encoding, int options) argument
5687 xmlReaderNewIO(xmlTextReaderPtr reader, xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
[all...]
H A DHTMLparser.c6672 * @URL: the base URL to use for the document
6682 htmlDoRead(htmlParserCtxtPtr ctxt, const char *URL, const char *encoding, argument
6700 if ((URL != NULL) && (ctxt->input != NULL) &&
6702 ctxt->input->filename = (char *) xmlStrdup((const xmlChar *) URL);
6719 * @URL: the base URL to use for the document
6728 htmlReadDoc(const xmlChar * cur, const char *URL, const char *encoding, int options) argument
6739 return (htmlDoRead(ctxt, URL, encoding, options, 0));
6744 * @filename: a file or URL
6777 htmlReadMemory(const char *buffer, int size, const char *URL, const char *encoding, int options) argument
6803 htmlReadFd(int fd, const char *URL, const char *encoding, int options) argument
6845 htmlReadIO(xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
6892 htmlCtxtReadDoc(htmlParserCtxtPtr ctxt, const xmlChar * cur, const char *URL, const char *encoding, int options) argument
6960 htmlCtxtReadMemory(htmlParserCtxtPtr ctxt, const char *buffer, int size, const char *URL, const char *encoding, int options) argument
7002 htmlCtxtReadFd(htmlParserCtxtPtr ctxt, int fd, const char *URL, const char *encoding, int options) argument
7044 htmlCtxtReadIO(htmlParserCtxtPtr ctxt, xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssTokens.java198 /** A URL of the form <code>url("...")</code>. */
199 URL, enum constant in enum:CssTokens.TokenType
507 // SPEC handle URL under "ident like token".
1223 return TokenType.URL;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProvider.java145 BookmarkColumns._ID, BookmarkColumns.URL, BookmarkColumns.VISITS,
153 BookmarkColumns.URL,
280 // Match against common URL prefixes.
371 throw new IllegalArgumentException(TAG + ": query - unknown URL uri = " + uri);
405 throw new IllegalArgumentException(TAG + ": insert - unknown URL " + uri);
456 throw new IllegalArgumentException(TAG + ": delete - unknown URL " + uri);
475 if (values.containsKey(Browser.BookmarkColumns.URL)) {
476 url = values.getAsString(Browser.BookmarkColumns.URL);
518 throw new IllegalArgumentException(TAG + ": update - unknown URL " + uri);
544 throw new IllegalArgumentException(TAG + ": getType - unknown URL "
746 URL, enum constant in enum:ChromeBrowserProvider.Type
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dcatalog.c137 xmlChar *URL; /* The expanded URL using the base */ member in struct:_xmlCatalogEntry
271 const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer,
300 if (URL == NULL)
301 URL = value;
302 if (URL != NULL)
303 ret->URL = xmlStrdup(URL);
305 ret->URL = NULL;
349 if (ret->URL !
270 xmlNewCatalogEntry(xmlCatalogEntryType type, const xmlChar *name, const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer, xmlCatalogEntryPtr group) argument
1148 xmlChar *URL = NULL; local
3620 xmlCatalogAddLocal(void *catalogs, const xmlChar *URL) argument
[all...]
H A Dpattern.c920 xmlChar *URL = NULL; local
956 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE);
960 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
976 PUSH(XML_OP_ATTR, NULL, URL);
984 PUSH(XML_OP_ATTR, token, URL);
991 if (URL != NULL)
992 XML_PAT_FREE_STRING(ctxt, URL)
1012 xmlChar *URL = NULL; local
1077 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
1081 XML_PAT_COPY_NSNAME(ctxt, URL, ctx
[all...]
H A Dxmllint.c256 xmllintExternalEntityLoader(const char *URL, const char *ID, argument
263 const char *lastsegment = URL;
264 const char *iter = URL;
282 ret = defaultEntityLoader(URL, ID, ctxt);
291 "Loaded URL=\"%s\" ID=\"%s\"\n",
292 URL ? URL : "(null)",
314 "Loaded URL=\"%s\" ID=\"%s\"\n",
328 if (URL != NULL)
329 warning(ctxt, "failed to load external entity \"%s\"\n", URL);
[all...]
H A Druntest.c226 testExternalEntityLoader(const char *URL, const char *ID, argument
230 if (checkTestFile(URL)) {
231 ret = xmlNoNetExternalEntityLoader(URL, ID, ctxt);
234 ret = xmlNoNetExternalEntityLoader(URL, ID, ctxt);
2770 /* Verify we received the escaped URL */
2789 /* Verify we received the escaped URL */
2837 urip_checkURL(const char *URL) { argument
2840 doc = xmlReadFile(URL, NULL, 0);
2879 fprintf(stderr, "failed the URL passing test for %s",
H A DxmlIO.c3673 * case it will handle encoding and update of the base URL in case of
3741 static int xmlNoNetExists(const char *URL) { argument
3744 if (URL == NULL)
3747 if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file://localhost/", 17))
3749 path = &URL[17];
3751 path = &URL[16];
3753 else if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file:///", 8)) {
3755 path = &URL[8];
3757 path = &URL[7];
3760 path = URL;
3780 xmlResolveResourceFromCatalog(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
3854 xmlDefaultExternalEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
3929 xmlLoadExternalEntity(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
3966 xmlNoNetExternalEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
[all...]
H A Dxmlreader.c533 if (cur->URL != NULL) xmlFree((char *) cur->URL);
4921 * @URL: the base URL to use for the document
4931 xmlParserInputBufferPtr input, const char *URL,
5008 (const char *) reader->input->buffer->content, 4, URL);
5013 xmlCreatePushParserCtxt(reader->sax, NULL, NULL, 0, URL);
5031 if (URL == NULL)
5035 xmlCanonicPath((const xmlChar *) URL);
5112 if ((URL !
4930 xmlTextReaderSetup(xmlTextReaderPtr reader, xmlParserInputBufferPtr input, const char *URL, const char *encoding, int options) argument
5193 xmlReaderForDoc(const xmlChar * cur, const char *URL, const char *encoding, int options) argument
5243 xmlReaderForMemory(const char *buffer, int size, const char *URL, const char *encoding, int options) argument
5279 xmlReaderForFd(int fd, const char *URL, const char *encoding, int options) argument
5316 xmlReaderForIO(xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
5399 xmlReaderNewDoc(xmlTextReaderPtr reader, const xmlChar * cur, const char *URL, const char *encoding, int options) argument
5463 xmlReaderNewMemory(xmlTextReaderPtr reader, const char *buffer, int size, const char *URL, const char *encoding, int options) argument
5498 xmlReaderNewFd(xmlTextReaderPtr reader, int fd, const char *URL, const char *encoding, int options) argument
5533 xmlReaderNewIO(xmlTextReaderPtr reader, xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
[all...]
H A DHTMLparser.c6540 * @URL: the base URL to use for the document
6550 htmlDoRead(htmlParserCtxtPtr ctxt, const char *URL, const char *encoding, argument
6568 if ((URL != NULL) && (ctxt->input != NULL) &&
6570 ctxt->input->filename = (char *) xmlStrdup((const xmlChar *) URL);
6587 * @URL: the base URL to use for the document
6596 htmlReadDoc(const xmlChar * cur, const char *URL, const char *encoding, int options) argument
6607 return (htmlDoRead(ctxt, URL, encoding, options, 0));
6612 * @filename: a file or URL
6645 htmlReadMemory(const char *buffer, int size, const char *URL, const char *encoding, int options) argument
6671 htmlReadFd(int fd, const char *URL, const char *encoding, int options) argument
6713 htmlReadIO(xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
6757 htmlCtxtReadDoc(htmlParserCtxtPtr ctxt, const xmlChar * cur, const char *URL, const char *encoding, int options) argument
6825 htmlCtxtReadMemory(htmlParserCtxtPtr ctxt, const char *buffer, int size, const char *URL, const char *encoding, int options) argument
6867 htmlCtxtReadFd(htmlParserCtxtPtr ctxt, int fd, const char *URL, const char *encoding, int options) argument
6909 htmlCtxtReadIO(htmlParserCtxtPtr ctxt, xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
[all...]
H A Dparser.c87 xmlCreateEntityParserCtxtInternal(const xmlChar *URL, const xmlChar *ID,
211 void *user_data, int depth, const xmlChar *URL,
1376 * @URL: the namespace name
1384 nsPush(xmlParserCtxtPtr ctxt, const xmlChar *prefix, const xmlChar *URL) argument
1391 if (ctxt->nsTab[i + 1] == URL)
1421 ctxt->nsTab[ctxt->nsNr++] = URL;
1619 * Pushes a new element name/prefix/URL on top of the name stack
4795 xmlChar *URL = NULL; local
4818 URL = xmlStrndup(base, tmp - base);
4824 if (URL !
8900 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len); local
8950 const xmlChar *URL = xmlDictLookup(ctxt->dict, attvalue, len); local
12340 xmlParseCtxtExternalEntity(xmlParserCtxtPtr ctx, const xmlChar *URL, const xmlChar *ID, xmlNodePtr *lst) argument
12535 xmlParseExternalEntityPrivate(xmlDocPtr doc, xmlParserCtxtPtr oldctxt, xmlSAXHandlerPtr sax, void *user_data, int depth, const xmlChar *URL, const xmlChar *ID, xmlNodePtr *list) argument
12745 xmlParseExternalEntity(xmlDocPtr doc, xmlSAXHandlerPtr sax, void *user_data, int depth, const xmlChar *URL, const xmlChar *ID, xmlNodePtr *lst) argument
13445 xmlCreateEntityParserCtxtInternal(const xmlChar *URL, const xmlChar *ID, const xmlChar *base, xmlParserCtxtPtr pctx) argument
13509 xmlCreateEntityParserCtxt(const xmlChar *URL, const xmlChar *ID, const xmlChar *base) argument
14629 xmlDoRead(xmlParserCtxtPtr ctxt, const char *URL, const char *encoding, int options, int reuse) argument
14674 xmlReadDoc(const xmlChar * cur, const char *URL, const char *encoding, int options) argument
14721 xmlReadMemory(const char *buffer, int size, const char *URL, const char *encoding, int options) argument
14745 xmlReadFd(int fd, const char *URL, const char *encoding, int options) argument
14787 xmlReadIO(xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
14830 xmlCtxtReadDoc(xmlParserCtxtPtr ctxt, const xmlChar * cur, const char *URL, const char *encoding, int options) argument
14898 xmlCtxtReadMemory(xmlParserCtxtPtr ctxt, const char *buffer, int size, const char *URL, const char *encoding, int options) argument
14942 xmlCtxtReadFd(xmlParserCtxtPtr ctxt, int fd, const char *URL, const char *encoding, int options) argument
14985 xmlCtxtReadIO(xmlParserCtxtPtr ctxt, xmlInputReadCallback ioread, xmlInputCloseCallback ioclose, void *ioctx, const char *URL, const char *encoding, int options) argument
[all...]
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dtree.h353 const xmlChar *href; /* URL for the namespace */
539 const xmlChar *URL; /* The URI for that document */ member in struct:_xmlDoc
/external/chromium_org/third_party/libxslt/libxslt/
H A Dtransform.c3227 xmlChar *URL = NULL; local
3249 URL = xsltEvalAttrValueTemplate(ctxt, inst,
3253 if (URL == NULL)
3254 URL = xsltEvalAttrValueTemplate(ctxt, inst,
3262 URL = xsltEvalAttrValueTemplate(ctxt, inst,
3266 if (URL != NULL) {
3276 cmp = xmlXPathCompile(URL);
3279 xmlFree(URL);
3280 URL = val;
3282 if (URL
[all...]
H A Dxslt.c5912 node->doc->URL);
6503 doc->URL);
6687 * @filename: the filename/URL to the stylesheet
6921 doc->URL);
6939 doc->URL);
6944 fake->URL = xmlNodeGetBase(doc, subtree->parent);
6948 fake->URL);
6968 xmlChar *URL, *base; local
6975 URL = xmlBuildURI(href, base);
6976 if (URL !
[all...]
/external/libxml2/include/libxml/
H A Dtree.h391 const xmlChar *href; /* URL for the namespace */
576 const xmlChar *URL; /* The URI for that document */ member in struct:_xmlDoc
/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h223 void JS_docSubmitForm(void* formData, int length, FX_LPCWSTR URL) argument
227 CFX_ByteString bsDestination = CFX_WideString(URL).UTF16LE_Encode();

Completed in 7321 milliseconds

1234