Searched refs:url (Results 51 - 75 of 165) sorted by relevance

1234567

/frameworks/base/core/java/android/text/style/
H A DURLSpan.java34 public URLSpan(String url) { argument
35 mURL = url;
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java43 public static final String MSG_NAV_URL = "url";
116 private void navigate(String url, int timeout) { argument
117 if(url == null) {
126 Log.v(LOGTAG, "Navigating to URL: " + url);
127 webView.loadUrl(url);
208 + ", url=" + failingUrl);
212 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
214 Log.v(LOGTAG, "onPageStarted: " + url);
218 public void onPageFinished(WebView view, String url) { argument
219 Log.v(LOGTAG, "onPageFinished: " + url);
[all...]
/frameworks/data-binding/gradlePlugin/
H A Dbuild.gradle51 url config.licenseUrl
/frameworks/data-binding/integration-tests/IndependentLibrary/app/
H A Dbuild.gradle50 repository(url: "file://${config.mavenRepoDir}")
/frameworks/support/customtabs/src/android/support/customtabs/
H A DICustomTabsService.aidl32 boolean mayLaunchUrl(in ICustomTabsCallback callback, in Uri url,
H A DCustomTabsService.java46 * For {@link CustomTabsService#mayLaunchUrl} calls that wants to specify more than one url,
48 * to insert a new url to each bundle inside list of bundles.
83 public boolean mayLaunchUrl(ICustomTabsCallback callback, Uri url,
86 new CustomTabsSessionToken(callback), url, extras, otherLikelyBundles);
155 * @param url Most likely URL.
158 * likelihood order. Each Bundle has to provide a url.
161 protected abstract boolean mayLaunchUrl(CustomTabsSessionToken sessionToken, Uri url, argument
/frameworks/volley/src/main/java/com/android/volley/
H A DRequest.java121 public Request(String url, Response.ErrorListener listener) { argument
122 this(Method.DEPRECATED_GET_OR_POST, url, listener);
131 public Request(int method, String url, Response.ErrorListener listener) { argument
133 mUrl = url;
137 mDefaultTrafficStatsTag = findDefaultTrafficStatsTag(url);
183 private static int findDefaultTrafficStatsTag(String url) { argument
184 if (!TextUtils.isEmpty(url)) {
185 Uri uri = Uri.parse(url);
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DURLFetcher.java50 * Fetches the specified url and returns the content and ttl.
60 public WebContent getWebContentFromUrlWithRetry(URL url, long fileSizeLimit, argument
68 return getWebContentFromUrl(url, fileSizeLimit, connectionTimeoutMillis);
84 * Fetches the specified url and returns the content and ttl.
90 public WebContent getWebContentFromUrl(URL url, long fileSizeLimit, int connectionTimeoutMillis) argument
92 final String scheme = url.getProtocol().toLowerCase(Locale.US);
94 throw new IllegalArgumentException("The url protocol should be on http or https.");
99 connection = (HttpURLConnection) url.openConnection();
113 Log.e(TAG, "The content size of the url is larger than " + fileSizeLimit);
146 throw new AssociationServiceException("The content size of the url i
[all...]
/frameworks/base/core/java/android/content/
H A DContentResolver.java324 * @param url A Uri identifying content (either a list or specific type),
328 public final @Nullable String getType(@NonNull Uri url) { argument
329 Preconditions.checkNotNull(url, "url");
332 IContentProvider provider = acquireExistingProvider(url);
335 return provider.getType(url);
339 Log.w(TAG, "Failed to get type for: " + url + " (" + e.getMessage() + ")");
346 if (!SCHEME_CONTENT.equals(url.getScheme())) {
352 ContentProvider.getUriWithoutUserId(url), resolveUserId(url));
381 getStreamTypes(@onNull Uri url, @NonNull String mimeTypeFilter) argument
570 canonicalize(@onNull Uri url) argument
606 uncanonicalize(@onNull Uri url) argument
1223 insert(@onNull Uri url, @Nullable ContentValues values) argument
1286 bulkInsert(@onNull Uri url, @NonNull ContentValues[] values) argument
1318 delete(@onNull Uri url, @Nullable String where, @Nullable String[] selectionArgs) argument
[all...]
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp62 const char *url,
64 ALOGV("setDataSource %s", url);
66 if (strncmp(url, kPing, strlen(kPing)) == 0) {
60 setDataSource( const sp<IMediaHTTPService>& , const char *url, const KeyedVector<String8, String8> *) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DGpsXtraDownloader.java104 protected byte[] doDownload(String url) { argument
105 if (DEBUG) Log.d(TAG, "Downloading XTRA data from " + url);
109 connection = (HttpURLConnection) (new URL(url)).openConnection();
/frameworks/av/media/libstagefright/include/
H A DSDPLoader.h43 void load(const char* url, const KeyedVector<String8, String8> *headers);
/frameworks/data-binding/extensions/baseAdapters/
H A Dbuild.gradle84 repository(url: "file://${config.mavenRepoDir}")
90 url config.licenseUrl
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DImageRequest.java63 * @param url URL of the image
72 public ImageRequest(String url, Response.Listener<Bitmap> listener, int maxWidth, int maxHeight, argument
74 super(Method.GET, url, errorListener);
89 public ImageRequest(String url, Response.Listener<Bitmap> listener, int maxWidth, int maxHeight, argument
91 this(url, listener, maxWidth, maxHeight,
161 VolleyLog.e("Caught OOM for %d byte image, url=%s", response.data.length, getUrl());
/frameworks/base/core/tests/coretests/src/android/provider/
H A DSmsProviderTest.java71 for (Uri url : urls) {
72 int count = contentResolver.delete(url, null, null);
/frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/
H A DCaptivePortalLoginActivity.java269 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
270 if (url.contains(mBrowserBailOutToken)) {
281 if (!url.startsWith(INTERNAL_ASSETS)) {
283 myUrlBar.setText(url);
289 public void onPageFinished(WebView view, String url) { argument
351 public boolean shouldOverrideUrlLoading (WebView view, String url) { argument
352 if (url.startsWith("tel:")) {
353 startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse(url)));
/frameworks/volley/src/test/java/com/android/volley/
H A DRequestTest.java84 public UrlParseRequest(String url) { argument
85 super(Request.Method.GET, url, null);
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DMockRequest.java34 public MockRequest(String url, ErrorListener listener) { argument
35 super(Request.Method.GET, url, listener);
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java192 * @param url the url
195 public static Token tokenForUrl(String url, String text) { argument
196 if(url == null) {
201 Video video = Video.matchURL(url, text);
207 YouTubeVideo ytVideo = YouTubeVideo.matchURL(url, text);
213 Photo photo = Photo.matchURL(url, text);
219 FlickrPhoto flickrPhoto = FlickrPhoto.matchURL(url, text);
225 return new Link(url, text);
358 String url
464 addURLToken(String url, String text) argument
790 private String url; field in class:AbstractMessageParser.Link
792 Link(String url, String text) argument
829 matchURL(String url, String text) argument
888 matchURL(String url, String text) argument
979 matchURL(String url, String text) argument
1066 matchURL(String url, String text) argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp107 const char *url,
110 ALOGV("setDataSource(%s)", url);
112 if (url == NULL) {
125 MediaPlayerFactory::getPlayerType(NULL /* client */, url);
129 status_t ret = p->setDataSource(httpService, url, headers);
105 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/base/core/java/android/net/
H A DNetwork.java246 public URLConnection openConnection(URL url) throws IOException { argument
259 return openConnection(url, proxy);
273 public URLConnection openConnection(URL url, java.net.Proxy proxy) throws IOException { argument
276 String protocol = url.getProtocol();
295 return okUrlFactory.open(url);
/frameworks/base/core/java/android/provider/
H A DBrowser.java70 * headers for the provided url. The keys can't be the standard HTTP headers
71 * as they are set by the WebView. The url's schema must be http(s).
165 * and/or a url, both of which can be edited by the user before saving.
169 * @param url Url for the bookmark. Can be null or empty string.
174 String url) {
266 private static final Cursor getVisitedLike(ContentResolver cr, String url) { argument
268 String compareString = url;
310 * @param url The site being visited.
316 String url, boolean real) {
380 * Remove a specific url fro
172 saveBookmark(Context c, String title, String url) argument
315 updateVisitedHistory(ContentResolver cr, String url, boolean real) argument
386 deleteFromHistory(ContentResolver cr, String url) argument
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
H A DGenerationalClassUtil.java68 for (URL url : urlClassLoader.getURLs()) {
69 L.d("checking url %s for intermediate data", url);
71 final File file = new File(url.toURI());
73 L.d("cannot load file for %s", url);
84 L.d("cannot open zip file from %s", url);
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DBandwidthTestUtil.java75 * @param server url of the test server
79 * @return download url
89 * Download a given file from a target url to a given destination file.
90 * @param targetUrl the url to download
96 URL url = new URL(targetUrl);
98 Log.d(LOG_TAG, "Download url:" + url);
100 URLConnection ucon = url.openConnection();
120 * @param server {@link String} url of test server
136 Log.d(LOG_TAG, "Upload url
[all...]
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DProxyServer.java83 URI url = null;
104 url = new URI(urlString);
105 host = url.getHost();
106 port = url.getPort();
141 requestType, url, httpVersion);
162 requestType, url, httpVersion);

Completed in 1664 milliseconds

1234567