Searched defs:url (Results 1 - 25 of 116) sorted by last modified time

12345

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSuggestionsAdapter.java334 private CharSequence formatUrl(CharSequence url) { argument
342 SpannableString text = new SpannableString(url);
344 0, url.length(),
/frameworks/volley/src/main/java/com/android/volley/
H A DRequest.java115 public Request(String url, Response.ErrorListener listener) { argument
116 this(Method.DEPRECATED_GET_OR_POST, url, listener);
125 public Request(int method, String url, Response.ErrorListener listener) { argument
127 mUrl = url;
131 mDefaultTrafficStatsTag = findDefaultTrafficStatsTag(url);
177 private static int findDefaultTrafficStatsTag(String url) { argument
178 if (!TextUtils.isEmpty(url)) {
179 Uri uri = Uri.parse(url);
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DBasicNetwork.java221 protected void logError(String what, String url, long start) { argument
223 VolleyLog.v("HTTP ERROR(%s) %d ms to fetch %s", what, (now - start), url);
H A DHurlStack.java91 String url = request.getUrl();
96 String rewritten = mUrlRewriter.rewriteUrl(url);
98 throw new IOException("URL blocked by rewriter: " + url);
100 url = rewritten;
102 URL parsedUrl = new URL(url);
166 * Create an {@link HttpURLConnection} for the specified {@code url}.
168 protected HttpURLConnection createConnection(URL url) throws IOException { argument
169 HttpURLConnection connection = (HttpURLConnection) url.openConnection();
181 * @param url
185 private HttpURLConnection openConnection(URL url, Reques argument
[all...]
H A DImageLoader.java75 public Bitmap getBitmap(String url); argument
76 public void putBitmap(String url, Bitmap bitmap); argument
147 * @param requestUrl The url of the remote image
159 * @param requestUrl The url of the remote image
199 * @param requestUrl The url of the remote image
497 * @param url The URL of the request.
502 private static String getCacheKey(String url, int maxWidth, int maxHeight, ScaleType scaleType) { argument
503 return new StringBuilder(url.length() + 12).append("#W").append(maxWidth)
504 .append("#H").append(maxHeight).append("#S").append(scaleType.ordinal()).append(url)
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());
H A DJsonArrayRequest.java37 * @param url URL to fetch the JSON from
41 public JsonArrayRequest(String url, Listener<JSONArray> listener, ErrorListener errorListener) { argument
42 super(Method.GET, url, null, listener, errorListener);
48 * @param url URL to fetch the JSON from
54 public JsonArrayRequest(int method, String url, JSONArray jsonRequest, argument
56 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
H A DJsonObjectRequest.java39 * @param url URL to fetch the JSON from
45 public JsonObjectRequest(int method, String url, JSONObject jsonRequest, argument
47 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
57 public JsonObjectRequest(String url, JSONObject jsonRequest, Listener<JSONObject> listener, argument
59 this(jsonRequest == null ? Method.GET : Method.POST, url, jsonRequest,
H A DJsonRequest.java51 public JsonRequest(String url, String requestBody, Listener<T> listener, argument
53 this(Method.DEPRECATED_GET_OR_POST, url, requestBody, listener, errorListener);
56 public JsonRequest(int method, String url, String requestBody, Listener<T> listener, argument
58 super(method, url, errorListener);
H A DNetworkImageView.java73 * @param url The URL that should be loaded into this ImageView.
76 public void setImageUrl(String url, ImageLoader imageLoader) { argument
77 mUrl = url;
H A DStringRequest.java37 * @param url URL to fetch the string at
41 public StringRequest(int method, String url, Listener<String> listener, argument
43 super(method, url, errorListener);
50 * @param url URL to fetch the string at
54 public StringRequest(String url, Listener<String> listener, ErrorListener errorListener) { argument
55 this(Method.GET, url, listener, errorListener);
/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);
H A DTestRequest.java32 public Base(String url, Response.ErrorListener listener) { argument
33 super(url, listener);
36 public Base(int method, String url, Response.ErrorListener listener) { argument
37 super(method, url, listener);
/frameworks/support/compat/java/android/support/v4/text/util/
H A DLinkifyCompat.java136 applyLink(link.url, link.start, link.end, text);
329 String url = makeUrl(m.group(0), schemesCopy, m, transformFilter);
331 applyLink(url, start, end, spannable);
349 private static String makeUrl(@NonNull String url, @NonNull String[] prefixes, argument
352 url = filter.transformUrl(matcher, url);
358 if (url.regionMatches(true, 0, prefixes[i], 0, prefixes[i].length())) {
362 if (!url.regionMatches(false, 0, prefixes[i], 0, prefixes[i].length())) {
363 url = prefixes[i] + url
399 applyLink(String url, int start, int end, Spannable text) argument
499 String url; field in class:LinkifyCompat.LinkSpec
[all...]
/frameworks/support/compat/tests/java/android/support/v4/text/util/
H A DLinkifyCompatTest.java63 public final String transformUrl(final Matcher match, String url) {
306 String url = "name@gmail.com";
307 assertAddLinksWithWebUrlFails("Should not recognize email address as URL", url);
311 String url = "https://android.com/path?ll=37.4221,-122.0836&z=17&pll=37.4221,-122.0836";
312 assertAddLinksWithWebUrlSucceeds("Should accept commas", url);
317 String url = "http://android/#notld///a/n/d/r/o/i/d&p1=1&p2=2";
319 " have TLD", url);
324 String url = "hTtP://android.com";
325 assertAddLinksWithWebUrlSucceeds("Protocol matching should be case insensitive", url);
330 String url
774 assertAddLinksWithWebUrlSucceeds(String msg, String url) argument
778 assertAddLinksWithWebUrlFails(String msg, String url) argument
782 assertAddLinksWithWebUrlPartiallyMatches(String msg, String expected, String url) argument
787 assertAddLinksWithEmailSucceeds(String msg, String url) argument
791 assertAddLinksWithEmailFails(String msg, String url) argument
795 assertAddLinksWithEmailPartiallyMatches(String msg, String expected, String url) argument
[all...]
/frameworks/support/customtabs/src/android/support/customtabs/
H A DCustomTabsIntent.java76 * Boolean extra that enables the url bar to hide as the user scrolls down the page
143 * the url as data. The client app can call {@link Intent#getDataString()} to get the url.
193 * {@link PendingIntent} will be sent, carrying the current url of the custom tab as data.
196 * If you do not care about the current url, you can safely ignore this extra and use
207 * Note when this {@link PendingIntent} is triggered, it will have the current url as data
258 * @param url The URL to load in the Custom Tab.
260 public void launchUrl(Context context, Uri url) { argument
261 intent.setData(url);
316 * Enables the url ba
[all...]
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);
161 * @param url Most likely URL.
164 * likelihood order. Each Bundle has to provide a url.
167 protected abstract boolean mayLaunchUrl(CustomTabsSessionToken sessionToken, Uri url, argument
H A DCustomTabsSession.java58 * @param url Most likely URL.
66 public boolean mayLaunchUrl(Uri url, Bundle extras, List<Bundle> otherLikelyBundles) { argument
68 return mService.mayLaunchUrl(mCallback, url, extras, otherLikelyBundles);
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java88 public Cursor query(Uri url, String[] projection, String selection, argument
92 switch (URL_MATCHER.match(url)) {
98 return loadFromEf(IccConstants.EF_ADN, getRequestSubId(url));
105 return loadFromEf(IccConstants.EF_FDN, getRequestSubId(url));
112 return loadFromEf(IccConstants.EF_SDN, getRequestSubId(url));
118 throw new IllegalArgumentException("Unknown URL " + url);
144 public String getType(Uri url) { argument
145 switch (URL_MATCHER.match(url)) {
156 throw new IllegalArgumentException("Unknown URL " + url);
161 public Uri insert(Uri url, ContentValue argument
258 delete(Uri url, String where, String[] whereArgs) argument
339 update(Uri url, ContentValues values, String where, String[] whereArgs) argument
543 getRequestSubId(Uri url) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatCmdMessage.java43 public String url; field in class:CatCmdMessage.BrowserSettings
96 mBrowserSettings.url = ((LaunchBrowserParams) cmdParams).mUrl;
139 mBrowserSettings.url = in.readString();
172 dest.writeString(mBrowserSettings.url);
H A DCommandParams.java75 String url, LaunchBrowserMode mode) {
79 mUrl = url;
74 LaunchBrowserParams(CommandDetails cmdDet, TextMessage confirmMsg, String url, LaunchBrowserMode mode) argument

Completed in 406 milliseconds

12345