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

1 2 3 4 5 6 78 91011>>

  /external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/
setup.py 28 url='http://code.google.com/p/closure-linter', variable
  /external/jetty/src/java/org/eclipse/jetty/server/
ServletResponseHttpWrapper.java 49 public String encodeURL(String url)
54 public String encodeRedirectURL(String url)
59 public String encodeUrl(String url)
64 public String encodeRedirectUrl(String url)
  /external/jetty/src/java/org/eclipse/jetty/xml/
ConfigurationProcessor.java 21 import java.net.URL;
34 public void init(URL url, XmlParser.Node root, XmlConfiguration configuration);
  /external/lldb/source/Host/macosx/cfcpp/
CFCBundle.h 22 CFCBundle (CFURLRef url);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RequestLine.java 7 import java.net.URL;
24 result.append(request.url());
26 result.append(requestPath(request.url()));
35 * Returns true if the request line should contain the full URL with host
45 * even if the request URL is. Includes the query component if it exists.
47 public static String requestPath(URL url) {
48 String pathAndQuery = url.getFile();
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
Configurator.java 20 import java.net.URL;
23 Implemented by classes capable of configuring log4j using a URL.
43 Interpret a resource pointed by a URL and set up log4j accordingly.
48 @param url The URL to parse
51 void doConfigure(URL url, LoggerRepository repository);
  /external/wpa_supplicant_8/src/ap/
hs20.h 17 u8 osu_method, const char *url);
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.cpp 112 const char* url) {
113 GET_PLAYER_TYPE_IMPL(client, url);
213 const char* url,
215 if (legacyDrm() && !strncasecmp("widevine://", url, 11)) {
239 const char* url,
246 if (!strncasecmp("http://", url, 7)
247 || !strncasecmp("https://", url, 8)
248 || !strncasecmp("file://", url, 7)) {
249 size_t len = strlen(url);
250 if (len >= 5 && !strcasecmp(".m3u8", &url[len - 5]))
    [all...]
  /frameworks/base/core/java/android/webkit/
CookieManager.java 90 * Sets a cookie for the given URL. Any existing cookie with the same host,
94 * @param url the URL for which the cookie is to be set
98 public abstract void setCookie(String url, String value);
101 * Sets a cookie for the given URL. Any existing cookie with the same host,
114 * @param url the URL for which the cookie is to be set
119 public abstract void setCookie(String url, String value, ValueCallback<Boolean> callback);
122 * Gets the cookies for the given URL.
124 * @param url the URL for which the cookies are requeste
    [all...]
UrlInterceptRegistry.java 48 * set the flag to control whether url intercept is enabled or disabled
62 * get the state of the url intercept, enabled or disabled
114 * Given an url, returns the CacheResult of the first
125 String url, Map<String, String> headers) {
132 CacheResult result = handler.service(url, headers);
141 * Given an url, returns the PluginData of the first
153 String url, Map<String, String> headers) {
160 PluginData data = handler.getPluginData(url, headers);
WebViewClient.java 30 * url is about to be loaded in the current WebView. If WebViewClient is not
32 * proper handler for the url. If WebViewClient is provided, return true
33 * means the host application handles the url, while return false means the
34 * current WebView handles the url.
38 * @param url The url to be loaded.
40 * and handle the url itself, otherwise return false.
42 public boolean shouldOverrideUrlLoading(WebView view, String url) {
56 * @param url The url to be loaded
    [all...]
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
JsonArrayRequest.java 31 * A request for retrieving a {@link JSONArray} response body at a given URL.
37 * @param url URL to fetch the JSON from
41 public JsonArrayRequest(String url, Listener<JSONArray> listener, ErrorListener errorListener) {
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,
56 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
JsonObjectRequest.java 31 * A request for retrieving a {@link JSONObject} response body at a given URL, allowing for an
39 * @param url URL to fetch the JSON from
45 public JsonObjectRequest(int method, String url, JSONObject jsonRequest,
47 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
57 public JsonObjectRequest(String url, JSONObject jsonRequest, Listener<JSONObject> listener,
59 this(jsonRequest == null ? Method.GET : Method.POST, url, jsonRequest,
JsonRequest.java 29 * A request for retrieving a T type response body at a given URL that also
51 public JsonRequest(String url, String requestBody, Listener<T> listener,
53 this(Method.DEPRECATED_GET_OR_POST, url, requestBody, listener, errorListener);
56 public JsonRequest(int method, String url, String requestBody, Listener<T> listener,
58 super(method, url, errorListener);
StringRequest.java 28 * A canned request for retrieving the response body at a given URL as a String.
37 * @param url URL to fetch the string at
41 public StringRequest(int method, String url, Listener<String> listener,
43 super(method, url, errorListener);
50 * @param url URL to fetch the string at
54 public StringRequest(String url, Listener<String> listener, ErrorListener errorListener) {
55 this(Method.GET, url, listener, errorListener);
  /libcore/luni/src/test/java/libcore/net/
NetworkSecurityPolicyTest.java 26 import java.net.URL;
77 URL url = new URL("http://localhost:" + server.getPort() + "/test.txt"); local
79 url.openConnection().getContent();
90 URL url = new URL("http://localhost:" + server.getPort() + "/test.txt"); local
92 url.openConnection().getContent();
105 URL url = new URL("ftp://localhost:" + server.getPort() + "/test.txt") local
118 URL url = new URL("ftp:\/\/localhost:" + server.getPort() + "\/test.txt"); local
132 URL url = new URL("jar:http:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local
145 URL url = new URL("jar:http:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local
160 URL url = new URL("jar:ftp:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local
173 URL url = new URL("jar:ftp:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
ApacheHttpClient.java 21 import java.net.URL;
52 @Override public Runnable request(URL url) {
53 return new ApacheHttpClientRequest(url);
57 private final URL url; field in class:ApacheHttpClient.ApacheHttpClientRequest
59 public ApacheHttpClientRequest(URL url) {
60 this.url = url;
    [all...]
  /external/wpa_supplicant_8/hs20/client/
osu_client.h 86 int cmd_prov(struct hs20_osu_client *ctx, const char *url);
87 int cmd_sim_prov(struct hs20_osu_client *ctx, const char *url);
92 int cmd_oma_dm_prov(struct hs20_osu_client *ctx, const char *url);
93 int cmd_oma_dm_sim_prov(struct hs20_osu_client *ctx, const char *url);
113 int est_load_cacerts(struct hs20_osu_client *ctx, const char *url);
114 int est_build_csr(struct hs20_osu_client *ctx, const char *url);
115 int est_simple_enroll(struct hs20_osu_client *ctx, const char *url,
  /frameworks/base/core/java/android/net/
MailTo.java 25 * MailTo URL parser
27 * This class parses a mailto scheme URL and then can be queried for
46 * Test to see if the given string is a mailto URL
47 * @param url string to be tested
48 * @return true if the string is a mailto URL
50 public static boolean isMailTo(String url) {
51 if (url != null && url.startsWith(MAILTO_SCHEME)) {
60 * @param url String containing a mailto URL
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
Loader.java 22 import java.net.URL;
49 public static URL getResource(Class<?> loadClass,String name, boolean checkParents)
51 URL url =null; local
53 while (url==null && loader!=null )
55 url=loader.getResource(name);
56 loader=(url==null&&checkParents)?loader.getParent():null;
60 while (url==null && loader!=null )
62 url=loader.getResource(name);
63 loader=(url==null&&checkParents)?loader.getParent():null
    [all...]
  /frameworks/base/core/java/android/content/
IContentProvider.java 38 public Cursor query(String callingPkg, Uri url, String[] projection, String selection,
41 public String getType(Uri url) throws RemoteException;
42 public Uri insert(String callingPkg, Uri url, ContentValues initialValues)
44 public int bulkInsert(String callingPkg, Uri url, ContentValues[] initialValues)
46 public int delete(String callingPkg, Uri url, String selection, String[] selectionArgs)
48 public int update(String callingPkg, Uri url, ContentValues values, String selection,
51 String callingPkg, Uri url, String mode, ICancellationSignal signal,
55 String callingPkg, Uri url, String mode, ICancellationSignal signal)
69 public String[] getStreamTypes(Uri url, String mimeTypeFilter) throws RemoteException;
70 public AssetFileDescriptor openTypedAssetFile(String callingPkg, Uri url, String mimeType
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BookmarkItem.java 57 mUrlText = (TextView) findViewById(R.id.url);
122 * Set the new url for the bookmark item.
123 * @param url The new url for the bookmark item.
125 /* package */ void setUrl(String url) {
126 if (url == null) {
130 mUrl = url;
132 url = UrlUtils.stripUrl(url);
133 if (url.length() > MAX_TEXTVIEW_LEN)
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebBackForwardListTest.java 85 private void checkBackForwardList(final String... url) {
93 if (list.getSize() != url.length) {
96 if (list.getCurrentIndex() != url.length - 1) {
99 for (int i = 0; i < url.length; i++) {
101 if (!url[i].equals(item.getUrl())) {
  /libcore/luni/src/main/java/java/net/
JarURLConnection.java 30 * This class establishes a connection to a {@code jar:} URL using the {@code
33 * as follows: <i>jar:{archive-url}!/{entry}</i> where "!/" is called a
47 * The location part of the represented URL.
53 private URL fileURL;
55 // the file component of the URL
60 * specified URL.
62 * @param url
63 * the URL that contains the location to connect to.
65 * if an invalid URL has been entered.
67 protected JarURLConnection(URL url) throws MalformedURLException
    [all...]
  /packages/screensavers/WebView/src/com/android/dreams/web/
Screensaver.java 51 public boolean shouldOverrideUrlLoading(WebView view, String url) {
52 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
69 final String url = prefs.getString("url", "file:///android_asset/default.html"); local
73 url, interactive ? "interactive" : "noninteractive"));
82 webview.loadUrl(url);

Completed in 571 milliseconds

1 2 3 4 5 6 78 91011>>