HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 126 - 150 of 2088) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Browser/src/com/android/browser/
Bookmarks.java 61 * @param url URL of the website to be bookmarked.
69 /* package */ static void addBookmark(Context context, boolean showToast, String url,
76 values.put(BrowserContract.Bookmarks.URL, url);
92 * Remove a bookmark from the database. If the url is a visited site, it
99 * @param url URL of the website to be removed.
102 ContentResolver cr, String url, String title) {
108 BrowserContract.Bookmarks.URL + " = ? AND "
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
URLUtilTest.java 104 assertFalse(URLUtil.isValidUrl("Error URL"));
125 byte[] url = new byte[0];
126 byte[] result = URLUtil.decode(url);
129 url = new byte[] { 'w', 'w', 'w', '.', 'n', 'a', 'm', 'e', '.', 'c', 'o', 'm', '/',
131 result = URLUtil.decode(url);
136 url = new byte[] { 'w', 'w', 'w', '.', 'n', 'a', 'm', 'e', '.', 'c', 'o', 'm', '/',
139 result = URLUtil.decode(url);
146 String url = "ftp://example.url/test"; local
147 assertEquals("test.jpg", URLUtil.guessFileName(url, null, "image/jpeg"))
158 String url = "domainName"; local
171 String url = "http:\/\/www.google.com#test"; local
    [all...]
  /frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
MediaStoreSaver.java 68 Uri url = null; local
72 url = cr.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
75 OutputStream imageOut = cr.openOutputStream(url);
82 long id = ContentUris.parseId(url);
88 cr.delete(url, null, null);
89 url = null;
92 if (url != null) {
93 cr.delete(url, null, null);
94 url = null;
98 if (url != null)
140 Uri url = cr.insert(Images.Thumbnails.EXTERNAL_CONTENT_URI, values); local
    [all...]
  /bionic/tools/bionicbb/
bionicbb.py 43 go_url = 'http://go/bionicbb/' + result['build']['url']
72 url = gerrit_url('/a/changes/{}/revisions/{}/review'.format(change_id,
76 logging.debug('POST %s: %s', url, request_data)
77 requests.post(url, headers=headers, json=request_data)
80 url = gerrit_url('/a/changes/{}/revisions/{}/review'.format(change_id,
83 logging.debug('POST %s: %s', url, request_data)
84 requests.post(url, headers=headers, json=request_data)
113 url = gerrit_url('/a/changes/{}/revisions/{}/review'.format(change_id,
116 logging.debug('POST %s: %s', url, request_data)
117 requests.post(url, headers=headers, json=request_data
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
ServiceConnectionSE.java 42 * Constructor taking the url to the endpoint for this soap communication
43 * @param url the url to open the connection to.
46 public ServiceConnectionSE(String url) throws IOException {
47 this(null, url, ServiceConnection.DEFAULT_TIMEOUT);
50 public ServiceConnectionSE(Proxy proxy, String url) throws IOException {
51 this(proxy, url, ServiceConnection.DEFAULT_TIMEOUT);
55 * Constructor taking the url to the endpoint for this soap communication
56 * @param url the url to open the connection to
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
HttpUrlGlideUrlLoader.java 51 GlideUrl url = model; local
53 url = modelCache.get(model, 0, 0);
54 if (url == null) {
56 url = model;
59 return new HttpUrlFetcher(url);
  /external/okhttp/android/main/java/com/squareup/okhttp/
HttpHandler.java 24 import java.net.URL;
38 @Override protected URLConnection openConnection(URL url) throws IOException {
39 return newOkUrlFactory(null /* proxy */).open(url);
42 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
43 if (url == null || proxy == null) {
44 throw new IllegalArgumentException("url == null || proxy == null");
46 return newOkUrlFactory(proxy).open(url);
55 // For HttpURLConnections created through java.net.URL Android uses a connection pool tha
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2net.py 66 # # The 'userinfo' URL component is deprecated by RFC 3986 for security
179 url = "http://www.example.com"
180 with test_support.transient_internet(url):
182 request = urllib2.Request(url)
195 URL = 'http://www.imdb.com' # No Connection:close
196 with test_support.transient_internet(URL):
197 req = urllib2.urlopen(URL)
210 for url in urls:
211 if isinstance(url, tuple):
212 url, req, expected_err = ur
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2net.py 66 # # The 'userinfo' URL component is deprecated by RFC 3986 for security
179 url = "http://www.example.com"
180 with test_support.transient_internet(url):
182 request = urllib2.Request(url)
195 URL = 'http://www.imdb.com' # No Connection:close
196 with test_support.transient_internet(URL):
197 req = urllib2.urlopen(URL)
210 for url in urls:
211 if isinstance(url, tuple):
212 url, req, expected_err = ur
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
pony.py 36 url = construct_url(environ, with_query_string=False)
42 url += '?horn'
46 msg, url, link)
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
SynchronousHttpClient.java 20 import java.net.URL;
36 @Override public void enqueue(URL url) {
37 executor.execute(request(url));
54 abstract Runnable request(URL url);
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
GetExample.java 11 String run(String url) throws IOException {
13 .url(url)
  /frameworks/av/media/libstagefright/httplive/
HTTPDownloader.h 54 const char *url,
59 String8 *actualUrl, /* returns actual URL */
65 const char *url,
71 const char *url, uint8_t *curPlaylistHash, bool *unchanged);
  /frameworks/base/packages/services/PacProcessor/src/com/android/pacprocessor/
PacNative.java 36 private native String makeProxyRequestNativeLocked(String url, String host);
74 public synchronized String makeProxyRequest(String url, String host) {
75 String ret = makeProxyRequestNativeLocked(url, host);
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 66 public void onReceivedTouchIconUrl(WebView view, String url,
68 mWrappedClient.onReceivedTouchIconUrl(view, url, precomposed);
106 public boolean onJsAlert(WebView view, String url, String message,
108 return mWrappedClient.onJsAlert(view, url, message, result);
113 public boolean onJsConfirm(WebView view, String url, String message,
115 return mWrappedClient.onJsConfirm(view, url, message, result);
120 public boolean onJsPrompt(WebView view, String url, String message,
122 return mWrappedClient.onJsPrompt(view, url, message, defaultValue, result);
127 public boolean onJsBeforeUnload(WebView view, String url, String message,
129 return mWrappedClient.onJsBeforeUnload(view, url, message, result)
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
WebActivity.java 27 * {@link EXTRA_ALLOWED_URL_BASE} is set in the starting intent, then only url starting with the
28 * allowed url base will be loaded.
52 ProvisionLogger.loge("No url provided to WebActivity.");
59 public boolean shouldOverrideUrlLoading(WebView view, String url) {
60 if (extraAllowedUrlBase != null && url.startsWith(extraAllowedUrlBase)) {
61 view.loadUrl(url);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
util.py 45 url = environ['wsgi.url_scheme']+'://'
49 url += environ['HTTP_HOST']
51 url += environ['SERVER_NAME']
55 url += ':' + environ['SERVER_PORT']
58 url += ':' + environ['SERVER_PORT']
60 url += quote(environ.get('SCRIPT_NAME') or '/')
61 return url
65 url = application_uri(environ)
69 url += path_info[1:]
71 url += path_inf
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
util.py 45 url = environ['wsgi.url_scheme']+'://'
49 url += environ['HTTP_HOST']
51 url += environ['SERVER_NAME']
55 url += ':' + environ['SERVER_PORT']
58 url += ':' + environ['SERVER_PORT']
60 url += quote(environ.get('SCRIPT_NAME') or '/')
61 return url
65 url = application_uri(environ)
69 url += path_info[1:]
71 url += path_inf
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib.py 1 """Open an arbitrary URL.
12 - RFC1808: the "relative URL" spec. (authoritative status)
13 - RFC1738 - the "URL standard". (authoritative status)
54 """OS-specific conversion from a relative URL of the 'file' scheme
59 """OS-specific conversion from a file system path to a relative URL
72 def urlopen(url, data=None, proxies=None):
73 """Create a file-like object for the specified URL to read from."""
87 return opener.open(url)
89 return opener.open(url, data)
90 def urlretrieve(url, filename=None, reporthook=None, data=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib.py 1 """Open an arbitrary URL.
12 - RFC1808: the "relative URL" spec. (authoritative status)
13 - RFC1738 - the "URL standard". (authoritative status)
54 """OS-specific conversion from a relative URL of the 'file' scheme
59 """OS-specific conversion from a file system path to a relative URL
72 def urlopen(url, data=None, proxies=None):
73 """Create a file-like object for the specified URL to read from."""
87 return opener.open(url)
89 return opener.open(url, data)
90 def urlretrieve(url, filename=None, reporthook=None, data=None)
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.css 16 background-image: url(images/resource-article.png);
20 background-image: url(images/resource-sample.png);
24 background-image: url(images/resource-tutorial.png);
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestBasic.java 66 Editable url = urlEdit.getText(); local
67 if (url.length() < 1) {
71 String urlString = url.toString();
84 url.setSpan(new ForegroundColorSpan(0xfff00fff),
90 url.setSpan(new ForegroundColorSpan(0xff548aff),
96 url.setSpan(new ForegroundColorSpan(0xfff00fff),
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
UrlImageBinder.java 25 * This CursorBinder binds the provided image URL to an ImageView by downloading the image from the
40 final String url = mTransformation.transform(cursor, columnIndex); local
41 imageDownloader.download(url, (ImageView) view);
UrlIntentListener.java 27 * A listener which expects a URL as a tag of the view it is associated with. It then opens the URL
33 final String url = view.getTag().toString(); local
34 final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
  /external/chromium-libpac/test/js-unittest/
binding_from_global.js 6 function FindProxyForURL(url, host) {

Completed in 1840 milliseconds

1 2 3 4 56 7 8 91011>>