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

12345

/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.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/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.java90 String url = request.getUrl();
95 String rewritten = mUrlRewriter.rewriteUrl(url);
97 throw new IOException("URL blocked by rewriter: " + url);
99 url = rewritten;
101 URL parsedUrl = new URL(url);
149 * Create an {@link HttpURLConnection} for the specified {@code url}.
151 protected HttpURLConnection createConnection(URL url) throws IOException { argument
152 return (HttpURLConnection) url.openConnection();
157 * @param url
161 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/customtabs/src/android/support/customtabs/
H A DCustomTabsIntent.java106 * the url as data. The client app can call {@link Intent#getDataString()} to get the url.
145 * @param url The URL to load in the Custom Tab.
147 public void launchUrl(Activity context, Uri url) { argument
148 intent.setData(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
H A DCustomTabsSession.java52 * @param url Most likely URL.
60 public boolean mayLaunchUrl(Uri url, Bundle extras, List<Bundle> otherLikelyBundles) { argument
62 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.java89 public Cursor query(Uri url, String[] projection, String selection, argument
93 switch (URL_MATCHER.match(url)) {
98 return loadFromEf(IccConstants.EF_ADN, getRequestSubId(url));
104 return loadFromEf(IccConstants.EF_FDN, getRequestSubId(url));
110 return loadFromEf(IccConstants.EF_SDN, getRequestSubId(url));
116 throw new IllegalArgumentException("Unknown URL " + url);
142 public String getType(Uri url) { argument
143 switch (URL_MATCHER.match(url)) {
154 throw new IllegalArgumentException("Unknown URL " + url);
159 public Uri insert(Uri url, ContentValue argument
256 delete(Uri url, String where, String[] whereArgs) argument
337 update(Uri url, ContentValues values, String where, String[] whereArgs) argument
538 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
95 mBrowserSettings.url = ((LaunchBrowserParams) cmdParams).mUrl;
137 mBrowserSettings.url = in.readString();
169 dest.writeString(mBrowserSettings.url);
H A DCommandParams.java73 String url, LaunchBrowserMode mode) {
77 mUrl = url;
72 LaunchBrowserParams(CommandDetails cmdDet, TextMessage confirmMsg, String url, LaunchBrowserMode mode) argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DNetworkAuthenticationTypeElement.java31 private NetworkAuthentication(NwkAuthTypeEnum type, String url) { argument
33 m_url = url;
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/compiler/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLayoutFileParser.java434 public static File urlToFile(URL url) throws MalformedURLException { argument
436 return new File(url.toURI());
442 return new File(url.getPath());

Completed in 615 milliseconds

12345