/external/wpa_supplicant_8/src/utils/ |
browser.h | 13 static inline int hs20_web_browser(const char *url) 18 int hs20_web_browser(const char *url);
|
/external/chromium-libpac/test/js-unittest/ |
return_empty_string.js | 1 function FindProxyForURL(url, host) {
|
return_integer.js | 1 function FindProxyForURL(url, host) {
|
direct.js | 1 function FindProxyForURL(url, host) {
|
return_function.js | 1 function FindProxyForURL(url, host) {
|
return_null.js | 1 function FindProxyForURL(url, host) {
|
return_undefined.js | 1 function FindProxyForURL(url, host) {
|
return_object.js | 1 function FindProxyForURL(url, host) {
|
/packages/apps/Browser/src/com/android/browser/ |
LogTag.java | 26 * @param url the url of the new bookmark. 29 public static void logBookmarkAdded(String url, String where) { 30 EventLog.writeEvent(EventLogTags.BROWSER_BOOKMARK_ADDED, url + "|" 41 * @param url the url of that page that finished loading. 44 public static void logPageFinishedLoading(String url, long duration) { 45 EventLog.writeEvent(EventLogTags.BROWSER_PAGE_LOADED, url + "|" 52 * @param url the url of the page that is being logged (old page) [all...] |
/frameworks/base/core/java/android/webkit/ |
URLUtil.java | 64 // bug 762454: strip period off end of url 74 Log.v(LOGTAG, "smartUrlFilter: failed to parse url = " + inUrl); 111 public static byte[] decode(byte[] url) throws IllegalArgumentException { 112 if (url.length == 0) { 117 byte[] tempData = new byte[url.length]; 120 for (int i = 0; i < url.length; i++) { 121 byte b = url[i]; 123 if (url.length - i > 2) { 124 b = (byte) (parseHex(url[i + 1]) * 16 125 + parseHex(url[i + 2])) [all...] |
MimeTypeMap.java | 39 * extension of a url and has undefined results for other Strings. 40 * @param url 41 * @return The file extension of the given url. 43 public static String getFileExtensionFromUrl(String url) { 44 if (!TextUtils.isEmpty(url)) { 45 int fragment = url.lastIndexOf('#'); 47 url = url.substring(0, fragment); 50 int query = url.lastIndexOf('?'); 52 url = url.substring(0, query) [all...] |
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssItem.java | 23 public String url; field in class:RssItem 29 public RssItem(String url, String title){ 30 this.url = url;
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowURLSpan.java | 10 private String url; field in class:ShadowURLSpan 12 public void __constructor__(String url) { 13 this.url = url; 18 return url;
|
/libcore/luni/src/test/java/libcore/java/net/ |
URLTest.java | 24 import java.net.URL; 31 URL url = new URL("http://username:password@host:8080/directory/file?query#ref"); local 32 assertEquals("http", url.getProtocol()); 33 assertEquals("username:password@host:8080", url.getAuthority()); 34 assertEquals("username:password", url.getUserInfo()); 35 assertEquals("host", url.getHost()); 36 assertEquals(8080, url.getPort()); 37 assertEquals(80, url.getDefaultPort()) 45 URL url = new URL("http:\/\/www.google.com:80\/example?language[id]=2"); local 107 URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local 123 final URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local 140 URL url = new URL("http:\/\/\/path"); local 147 URL url = new URL("http:\/path"); local 161 URL url = new URL("http:\/\/host"); local 168 URL url = new URL("http:\/\/"); local 182 URL url = new URL("http:"); local 204 URL url = new URL("http:\/\/user@host"); local 211 URL url = new URL("http:\/\/user@host:8080"); local 219 URL url = new URL("http:\/\/user:password@host:8080"); local 227 URL url = new URL("http:\/\/user:password@:8080"); local 235 URL url = new URL("http:\/\/user:password@"); local 243 URL url = new URL("http:\/\/host\/path"); local 249 URL url = new URL("http:\/\/host?query"); local 256 URL url = new URL("http:\/\/host#fragment"); local 263 URL url = new URL("http:\/\/host\/file@foo"); local 270 URL url = new URL("http:\/\/host\/file:colon"); local 276 URL url = new URL("http:\/\/host\/file?query\/path"); local 283 URL url = new URL("http:\/\/host\/file?query?another"); local 290 URL url = new URL("http:\/\/host\/file?query@at"); local 297 URL url = new URL("http:\/\/host\/file?query:colon"); local 304 URL url = new URL("http:\/\/host\/file#fragment?query"); local 312 URL url = new URL("http:\/\/host\/file#fragment:80"); local 320 URL url = new URL("http:\/\/host\/file#fragment\/path"); local 327 URL url = new URL("http", "host", "\/file#fragment\/path"); local 334 URL url = new URL("http:\/\/host\/file#fragment#another"); local 341 URL url = new URL("http:\/\/host:\/"); local 387 URL url = new URL(base, "another"); local 397 URL url = new URL(base, "#another"); local 406 URL url = new URL("http:\/\/host\/a\/b\/..\/c"); local 529 URL url = new URL("http:\/\/user:[::1]@host"); local 535 URL url = new URL("http", "host", "a"); local 544 URL url = new URL("http", null, "a"); local 553 URL url = new URL("file:\/\/\/\/foo"); local 560 URL url = new URL("file:\/\/x\/foo"); local 572 URL url = new URL("http:\/\/\/foo"); local 579 URL url = new URL("http:\/\/\/\/foo"); local 591 URL url = new URL("file:..\/a\/b"); local 597 URL url = new URL("http:\/\/.\/"); local 608 URL url = new URL("http", "[192.168.0.1]", "\/"); local 618 URL url = new URL("http", "[www.android.com]", "\/"); local 628 URL url = new URL("http", "fe80::1234", "\/"); local 633 URL url = new URL("http:\/\/[::1]:2\/"); local 643 URL url = new URL("http", "host", 80, "\/doc|search?q=green robots#over 6\\""); local 653 URL url = new URL("HTTP:\/\/host\/path"); local 658 URL url = new URL("http:\/\/\/path"); local 664 URL url = new URL("http:\/\/?query"); local 671 URL url = new URL("http:\/\/#fragment"); local 709 URL url = new URL("http:\/\/a_b.c.d.net\/"); local [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/ |
SourceTree.java | 38 * @param url The URI of the source tree. 40 public SourceTree(int root, String url) 43 m_url = url;
|
/external/cmockery/cmockery_0_1_2/src/example/ |
database.h | 29 const char *url; member in struct:DatabaseConnection 35 DatabaseConnection* connect_to_database(const char * const url,
|
/external/skia/platform_tools/android/bin/ |
download_toolchains.py | 11 url = sys.argv[1] variable 15 download_utils.SyncURL(url, filepath)
|
/libcore/luni/src/test/java/libcore/java/net/customstreamhandler/http/ |
Handler.java | 20 import java.net.URL; 25 * This specially-named class is created reflectively by {@link URL}. For the 30 @Override protected URLConnection openConnection(URL url) throws IOException { 31 return new HandlerURLConnection(url); 35 protected HandlerURLConnection(URL url) { 36 super(url);
|
/external/proguard/src/proguard/ |
FileWordReader.java | 24 import java.net.URL; 28 * A <code>WordReader</code> that returns words from a file or a URL. 47 * Creates a new FileWordReader for the given URL. 49 public FileWordReader(URL url) throws IOException 51 super(new LineNumberReader(new BufferedReader(new InputStreamReader(url.openStream()))), 52 "file '" + url.toString() + "'",
|
/libcore/luni/src/main/java/java/sql/ |
Driver.java | 25 * <p>The JDBC driver uses URLs to specify the location of specific data. URL 37 * given URL. 39 * @param url 40 * the URL to connect to. 42 * to the supplied URL, {@code false} otherwise. Typically, the 48 public boolean acceptsURL(String url) throws SQLException; 52 * supplied URL. 54 * @param url 55 * the URL to connect. 66 public Connection connect(String url, Properties info) throws SQLException [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
CookieTest.java | 63 String url = "http://www.foo.com"; local 66 mCookieManager.setCookie(url, "a=b"); 67 String cookie = mCookieManager.getCookie(url); 75 mCookieManager.setCookie(url, "c=d; domain=.foo.com"); 76 cookie = mCookieManager.getCookie(url); 86 mCookieManager.setCookie(url, "e=f; domain=www.foo.com"); 87 cookie = mCookieManager.getCookie(url); 148 String url = "http://foo.bar.com"; local 150 mCookieManager.setCookie(url, "a=1; domain=.yo.foo.bar.com"); 151 String cookie = mCookieManager.getCookie(url); 187 String url = "http:\/\/www.foo.com"; local 219 String url = "http:\/\/www.foobar.com"; local [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
GlideUrl.java | 7 import java.net.URL; 11 * unnecessary URL instantiations for loaders that require only string urls rather than URL objects. 18 * To obtain a properly escaped URL, call {@link #toURL()}. To obtain a properly escaped string URL, call 19 * {@link #toURL()} and then {@link java.net.URL#toString()}. 25 private final URL url; field in class:GlideUrl 28 private URL safeUrl; 30 public GlideUrl(URL url) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
nturl2path.py | 1 """Convert a NT pathname to a file URL and vice versa.""" 3 def url2pathname(url): 4 """OS-specific conversion from a relative URL of the 'file' scheme 12 url = url.replace(':', '|') 13 if not '|' in url: 15 if url[:4] == '////': 19 url = url[2:] 20 components = url.split('/' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
nturl2path.py | 1 """Convert a NT pathname to a file URL and vice versa.""" 3 def url2pathname(url): 4 """OS-specific conversion from a relative URL of the 'file' scheme 12 url = url.replace(':', '|') 13 if not '|' in url: 15 if url[:4] == '////': 19 url = url[2:] 20 components = url.split('/' [all...] |
/external/guava/guava/src/com/google/common/io/ |
Resources.java | 31 import java.net.URL; 37 * Note that even though these methods use {@link URL} parameters, they 53 * read from the given URL. 55 * @param url the URL to read from 57 * @deprecated Use {@link #asByteSource(URL)} instead. This method is 61 public static InputSupplier<InputStream> newInputStreamSupplier(URL url) { 62 return ByteStreams.asInputSupplier(asByteSource(url)); 66 * Returns a {@link ByteSource} that reads from the given URL 79 private final URL url; field in class:Resources.UrlByteSource 228 URL url = loader.getResource(resourceName); local 240 URL url = contextClass.getResource(resourceName); local [all...] |