| /external/owasp/sanitizer/src/main/org/owasp/html/ |
| CssTokens.java | 62 * <li>All <code>url(…)</code> tokens are quoted. 198 /** A URL of the form <code>url("...")</code>. */ 199 URL, 439 // <at-keyword>, <hash>, <string>, <bad-string>, <url>, 440 // <bad-url>, <delim>, <number>, <percentage>, 507 // SPEC handle URL under "ident like token". 600 // TODO: handle case where "url" is encoded. [all...] |
| /external/v8/tools/release/ |
| test_scripts.py | 292 def URL(*args, **kwargs): 417 def ReadURL(self, url, params): 419 return self._mock.Call("readurl", url, params) 421 return self._mock.Call("readurl", url) 578 "Review URL: https://codereview.chromium.org/9876543210\n")), 579 URL("https://codereview.chromium.org/9876543210/description", [all...] |
| /frameworks/base/core/java/android/provider/ |
| BrowserContract.java | 40 * history, images and the mapping between the image and URL. 162 * This column is valid when the row is a URL. The history table's URL 164 * <P>Type: TEXT (URL)</P> 166 public static final String URL = "url"; 236 * The URL. The URL can map onto the different type of images. 237 * <P>Type: TEXT (URL)</P> 239 public static final String URL = "url" [all...] |
| ContactsContract.java | [all...] |
| /frameworks/base/media/java/android/media/ |
| TimedText.java | 328 * The linked-to URL 330 public final String URL; 342 * @param url the linked-to URL. 345 public HyperText(int startChar, int endChar, String url, String alt) { 348 this.URL = url; 656 byte[] url = parcel.createByteArray(); 657 final String urlString = new String(url, 0, len);
|
| /libcore/ojluni/src/main/java/java/net/ |
| URL.java | 39 * Class <code>URL</code> represents a Uniform Resource 46 * <a href="http://www.socs.uts.edu.au/MosaicDocs-old/url-primer.html"> 47 * <i>http://www.socs.uts.edu.au/MosaicDocs-old/url-primer.html</i></a> 50 * In general, a URL can be broken into several parts. The previous 51 * example of a URL indicates that the protocol to use is 55 * machine is named <code>/MosaicDocs-old/url-primer.html</code>. The exact 59 * the URL is called the <i>path</i> component. 61 * A URL can optionally specify a "port", which is the 68 * http://www.socs.uts.edu.au:80/MosaicDocs-old/url-primer.html 71 * The syntax of <code>URL</code> is defined by < [all...] |
| /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/ |
| CompatibilityTest.java | 91 private static final String URL = "dynamic-config-url"; 152 @Option(name = URL, 153 description = "Specify the url for override config")
|
| /external/libxml2/ |
| pattern.c | 924 xmlChar *URL = NULL; 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; 1081 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE) 1085 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i] [all...] |
| schematron.c | 183 const xmlChar *URL; 582 * @URL: the location of the schema 590 xmlSchematronNewParserCtxt(const char *URL) 594 if (URL == NULL) 608 ret->URL = xmlDictLookup(ret->dict, (const xmlChar *) URL, -1); 1092 if (ctxt->URL != NULL) { 1093 doc = xmlReadFile((const char *) ctxt->URL, NULL, 1099 ctxt->URL, NULL); 1113 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer") [all...] |
| xinclude.c | 55 xmlChar *URI; /* the fully resolved resource URL */ 78 xmlChar * url; /* the current URL processed */ member in struct:_xmlXIncludeCtxt 80 int urlMax; /* size of URL stack */ 81 xmlChar * *urlTab; /* URL stack */ 308 * @value: the url 310 * Pushes a new url on top of the url stack 329 xmlXIncludeErrMemory(ctxt, NULL, "adding URL"); 340 xmlXIncludeErrMemory(ctxt, NULL, "adding URL"); [all...] |
| catalog.c | 141 xmlChar *URL; /* The expanded URL using the base */ 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 != NULL [all...] |
| parser.c | 94 xmlCreateEntityParserCtxtInternal(const xmlChar *URL, const xmlChar *ID, 274 void *user_data, int depth, const xmlChar *URL, [all...] |
| relaxng.c | 226 xmlChar *URL; [all...] |
| /external/pdfium/fpdfsdk/include/ |
| fsdk_mgr.h | 141 void JS_docSubmitForm(void* formData, int length, const FX_WCHAR* URL); 351 IFX_FileRead* FFI_DownloadFromURL(const FX_WCHAR* url) { 353 CFX_ByteString bstrURL = CFX_WideString(url).UTF16LE_Encode(); 372 FPDF_WIDESTRING URL = (FPDF_WIDESTRING)bsURL.GetBuffer(bsURL.GetLength()); 393 m_pInfo->FFI_PostRequestURL(m_pInfo, URL, data, contentType, encode, 410 FPDF_WIDESTRING URL = (FPDF_WIDESTRING)bsURL.GetBuffer(bsURL.GetLength()); 420 return m_pInfo->FFI_PutRequestURL(m_pInfo, URL, data, encode);
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
| URLTest.java | 30 import java.net.URL; 39 protected URLConnection openConnection(URL u) 45 URL u; 47 URL u1; 49 URL u2; 51 URL u3; 53 URL u4; 55 URL u5; 57 URL u6; 64 * java.net.URL#URL(java.lang.String 868 URL url = new URL("http", ipv6Host, -1, "myfile"); local 1066 URL url = new URL(strURL); local 1077 URL url = new URL(new URL(strURL), ref); local 1103 URL url = new URL(null, "foobar:\/\/example.com\/foobar", myHandler); local [all...] |
| /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
| BluetoothPbapVcardManager.java | 757 URL( 20, "URL", false, false), [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_xmlrpc.py | 275 ADDR = PORT = URL = None 308 global ADDR, PORT, URL 314 URL = "http://%s:%d"%(ADDR, PORT) 367 global ADDR, PORT, URL 373 URL = "http://%s:%d"%(ADDR, PORT) 453 p = xmlrpclib.ServerProxy(URL) 466 p = xmlrpclib.ServerProxy(URL) 493 p = xmlrpclib.ServerProxy(URL) 508 p = xmlrpclib.ServerProxy(URL) 522 p = xmlrpclib.ServerProxy(URL) [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_xmlrpc.py | 275 ADDR = PORT = URL = None 308 global ADDR, PORT, URL 314 URL = "http://%s:%d"%(ADDR, PORT) 367 global ADDR, PORT, URL 373 URL = "http://%s:%d"%(ADDR, PORT) 453 p = xmlrpclib.ServerProxy(URL) 466 p = xmlrpclib.ServerProxy(URL) 493 p = xmlrpclib.ServerProxy(URL) 508 p = xmlrpclib.ServerProxy(URL) 522 p = xmlrpclib.ServerProxy(URL) [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_xmlrpc.py | 275 ADDR = PORT = URL = None 308 global ADDR, PORT, URL 314 URL = "http://%s:%d"%(ADDR, PORT) 367 global ADDR, PORT, URL 373 URL = "http://%s:%d"%(ADDR, PORT) 453 p = xmlrpclib.ServerProxy(URL) 466 p = xmlrpclib.ServerProxy(URL) 493 p = xmlrpclib.ServerProxy(URL) 508 p = xmlrpclib.ServerProxy(URL) 522 p = xmlrpclib.ServerProxy(URL) [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_xmlrpc.py | 275 ADDR = PORT = URL = None 308 global ADDR, PORT, URL 314 URL = "http://%s:%d"%(ADDR, PORT) 367 global ADDR, PORT, URL 373 URL = "http://%s:%d"%(ADDR, PORT) 453 p = xmlrpclib.ServerProxy(URL) 466 p = xmlrpclib.ServerProxy(URL) 493 p = xmlrpclib.ServerProxy(URL) 508 p = xmlrpclib.ServerProxy(URL) 522 p = xmlrpclib.ServerProxy(URL) [all...] |
| /external/libxml2/include/libxml/ |
| tree.h | 392 const xmlChar *href; /* URL for the namespace */ 577 const xmlChar *URL; /* The URI for that document */ [all...] |
| /external/libxml2/python/ |
| libxml.c | 709 pythonExternalEntityLoader(const char *URL, const char *ID, 722 (char *) "(ssO)", URL, ID, ctxtobj); 744 if (URL != NULL) 746 URL); 751 } else if (URL != NULL) { 752 result->filename = (char *) xmlStrdup((const xmlChar *)URL); 753 result->directory = xmlParserGetDirectory((const char *) URL); 758 result = defaultExternalEntityLoader(URL, ID, ctxt); [all...] |
| /libcore/luni/src/test/java/libcore/java/net/ |
| OldURLTest.java | 33 import java.net.URL; 58 new URL("http", "apache.org", 123456789, "file"); 60 new URL("http", "apache.org", -123, "file"); 69 URL testURL = new URL("http", "www.apache.org:8082", "test.html#anch"); 77 new URL("hftp", "apache.org:8082", "test.html#anch"); 90 new URL("test_protocol", "", "fake.jar"); 97 URL testURL1 = new URL("http", "www.apache.org:8080", "test.html#anch"); 98 URL testURL2 = new URL("http", "www.apache.org:8080", "test.html#anch") 245 URL url = new URL("http:\/\/web2.javasoft.com\/some+file.html"); local 483 URL url = new URL("http:\/\/www.example.com"); local 494 URL url = new URL("ftp:\/\/myUser:password@host.dom\/etc\/motd"); local 504 URL url = new URL("http:\/\/www.java2s.com:8080"); local 786 URL url = new URL(new URL(strURL), ref); local 792 URL url = new URL(strURL); local [all...] |
| /external/robolectric/v3/libs/ |
| vtd-xml-2.11.jar | |
| /prebuilts/tools/common/m2/repository/com/ximpleware/vtd-xml/2.11/ |
| vtd-xml-2.11.jar | |