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

<<11121314151617181920>>

  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 154 * <code>content://xmldocument/?url=</code> followed by an encoded version of the URL of your
179 final String url = uri.getQueryParameter("url"); local
180 if (url != null) {
181 parser = getUriXmlPullParser(url);
211 * Creates an XmlPullParser for the provided URL. Can be overloaded to provide your own parser.
212 * @param url The URL of the XML document that is to be parsed.
215 protected XmlPullParser getUriXmlPullParser(String url) {
    [all...]
  /external/javassist/src/main/javassist/
ClassPoolTail.java 21 import java.net.URL;
53 public URL find(String classname) {
104 public URL find(String classname) {
107 URL url = jars[i].find(classname); local
108 if (url != null)
109 return url;
153 public URL find(String classname) {
158 return new URL("jar:" + jarfileURL + "!/" + jarname);
355 * Searches the class path to obtain the URL of the class fil
367 URL url = null; local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 143 String url = message.URL; local
144 int q = url.indexOf('?');
148 // Combine the URL query string with the other parameters:
150 parameters.addAll(OAuth.decodeForm(message.URL.substring(q + 1)));
152 url = url.substring(0, q);
155 + OAuth.percentEncode(normalizeUrl(url)) + '&'
159 protected static String normalizeUrl(String url) throws URISyntaxException {
160 URI uri = new URI(url);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
SocketConnector.java 36 import java.net.URL;
180 URL url = tunnelRequest.url(); local
181 String requestLine = "CONNECT " + url.getHost() + ":" + url.getPort() + " HTTP/1.1";
231 String host = request.url().getHost();
232 int port = getEffectivePort(request.url());
235 .url(new URL("https", host, port, "/")
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
LocalSource.java 146 String url = data.cursor.getString(dataIndex); local
147 if (url != null && url.equals(data.url)) {
168 data.url = cursor.getString(dataIndex);
246 log(TAG, "opening:" + data.url);
247 fis = new FileInputStream(data.url);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 152 String url = mWebServer.getUserAgentUrl(); local
156 mOnUiThread.loadUrlAndWaitForCompletion(url);
162 mOnUiThread.loadUrlAndWaitForCompletion(url);
168 mOnUiThread.loadUrlAndWaitForCompletion(url);
174 mOnUiThread.loadUrlAndWaitForCompletion(url);
647 final String url = mWebServer.getAppCacheUrl();
650 mOnUiThread.loadUrlAndWaitForCompletion(url);
673 final String url = mWebServer.getAppCacheUrl();
677 mOnUiThread.loadUrlAndWaitForCompletion(url);
692 mOnUiThread.loadUrlAndWaitForCompletion(url);
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 45 /** Get the known set of URL schemes. */
189 * Get a the appropriate Token for a given URL
192 * @param url the url
195 public static Token tokenForUrl(String url, String text) {
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)
358 String url = ""; local
790 private String url; field in class:AbstractMessageParser.Link
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 91 public static final String URL = "url";
106 "ON bookmarks.url = images." + Images.URL;
108 "ON history.url = images." + Images.URL;
116 "ON history.url = bookmarks.url LEFT OUTER JOIN images " +
117 "ON history.url = images.url_key";
125 "history LEFT OUTER JOIN bookmarks ON history.url = bookmarks.url"
532 String url = c.getString(0); local
564 String url = c.getString(0); local
1359 String url = c.getString(2); local
1476 String url = values.getAsString(Bookmarks.URL); local
1498 String url = values.getAsString(History.URL); local
1742 String url = values.getAsString(Images.URL); local
1919 String url = null; local
2026 String url = null; local
    [all...]
BrowserProvider.java 71 "_id", "url", "title", "bookmark", "user_entered"
74 "(url LIKE ? OR url LIKE ? OR url LIKE ? OR url LIKE ?"
164 // 23 -> 24 Url not allowed to be null anymore.
260 "url TEXT NOT NULL," +
278 db.execSQL("INSERT INTO bookmarks (title, url, visits, " +
307 db.execSQL("DELETE FROM bookmarks WHERE (bookmark = 0 AND url LIKE \"%.google.%client=ms-%\")");
315 db.execSQL("DELETE FROM bookmarks WHERE url IS NULL;")
    [all...]
  /external/google-breakpad/src/testing/gtest/scripts/
upload.py 118 def __init__(self, url, code, msg, headers, args):
119 urllib2.HTTPError.__init__(self, url, code, msg, headers, None)
162 def _CreateRequest(self, url, data=None):
164 logging.debug("Creating request for: '%s' with payload:\n%s", url, data)
165 req = urllib2.Request(url, data=data)
191 url="https://www.google.com/accounts/ClientLogin",
248 us to the URL we provided.
320 url = "http://%s%s" % (self.host, request_path)
322 url += "?" + urllib.urlencode(args)
323 req = self._CreateRequest(url=url, data=payload
    [all...]
  /external/google-breakpad/src/testing/scripts/
upload.py 118 def __init__(self, url, code, msg, headers, args):
119 urllib2.HTTPError.__init__(self, url, code, msg, headers, None)
162 def _CreateRequest(self, url, data=None):
164 logging.debug("Creating request for: '%s' with payload:\n%s", url, data)
165 req = urllib2.Request(url, data=data)
191 url="https://www.google.com/accounts/ClientLogin",
248 us to the URL we provided.
320 url = "http://%s%s" % (self.host, request_path)
322 url += "?" + urllib.urlencode(args)
323 req = self._CreateRequest(url=url, data=payload
    [all...]
  /external/wpa_supplicant_8/hs20/client/
oma_dm_client.c 109 const char *url, int msgid)
123 oma_dm_add_locuri(ctx, synchdr, "Target", url);
293 const char *url, int msgid, const char *oper)
299 syncml = oma_dm_build_hdr(ctx, url, msgid);
331 const char *url, int msgid)
335 syncml = build_oma_dm_1(ctx, url, msgid, DM_HS20_SUBSCRIPTION_CREATION);
344 const char *url, int msgid)
348 syncml = build_oma_dm_1(ctx, url, msgid,
358 const char *url, int msgid)
362 syncml = build_oma_dm_1(ctx, url, msgid, DM_HS20_POLICY_UPDATE)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
HTMLImports.js 196 var CSS_URL_REGEXP = /(url\()([^)]*)(\))/g;
197 var CSS_IMPORT_REGEXP = /(@import[\s]+(?!url\())([^;]*)(;)/g;
211 return text.replace(regexp, function(m, pre, url, post) {
212 var urlPath = url.replace(/["']/g, "");
228 load: function(url, next, nextContext) {
231 url += "?" + Math.random();
233 request.open("GET", url, xhr.async);
247 loadDocument: function(url, next, nextContext) {
248 this.load(url, next, nextContext).responseType = "document";
278 var url = elt.src || elt.href
    [all...]
  /external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
rest_api.py 159 def do_request_async(self, url, method='GET', headers=None, payload=None,
166 url: the url to fetch.
174 The async fetch of the url.
182 url=url,
222 def urlfetch_async(self, url, method='GET', headers=None,
231 url: the url to fetch.
252 url, payload=payload, method=method
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 107 const char *url,
110 ALOGV("setDataSource(%s)", url);
112 if (url == NULL) {
117 // a given URL, a pointer to an outer IMediaPlayer can be passed to the
118 // factory system to be taken into consideration along with the URL. In the
125 MediaPlayerFactory::getPlayerType(NULL /* client */, url);
129 status_t ret = p->setDataSource(httpService, url, headers);
  /frameworks/base/core/java/android/net/
Network.java 35 import java.net.URL;
238 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
239 * on this Network. The URL protocol must be {@code HTTP} or {@code HTTPS}.
241 * @return a {@code URLConnection} to the resource referred to by this URL.
242 * @throws MalformedURLException if the URL protocol is not HTTP or HTTPS.
244 * @see java.net.URL#openConnection()
246 public URLConnection openConnection(URL url) throws IOException {
259 return openConnection(url, proxy);
263 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sen
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 70 * 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).
79 BookmarkColumns.URL, // 1
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) {
240 * column, {@link BookmarkColumns#URL}.
247 return new MatrixCursor(new String[]{Bookmarks.URL}, 0);
252 * have a single column, {@link BookmarkColumns#URL}
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
GenerationalClassUtil.java 31 import java.net.URL;
68 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);
  /libcore/luni/src/main/java/libcore/net/url/
FileURLConnection.java 18 package libcore.net.url;
29 import java.net.URL;
86 * a connection to the file pointed by this <code>URL<code>
88 * @param url The URL this connection is connected to
90 public FileURLConnection(URL url) {
91 super(url);
92 filename = url.getFile();
105 * by this <code>URL</code>. If the file is a directory, it will retur
    [all...]
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 28 import java.net.URL;
69 URL url = null; local
75 url = new URL("file:/" + resPath + "/" + fileName);
80 return url.toString();
152 public static File getExternalLocalFile(String url) throws IOException {
154 InputStream in = new URL(url).openStream();
  /packages/apps/Browser/src/com/android/browser/
NavigationBarBase.java 66 mUrlInput = (UrlInputView) findViewById(R.id.url);
161 String url = UrlUtils.smartUrlFilter(text, false); local
165 if (url != null && t != null && url.startsWith("javascript:")) {
166 mUiController.loadUrl(t, url);
  /packages/apps/Email/src/com/android/email/activity/setup/
OAuthAuthenticationActivity.java 61 public boolean shouldOverrideUrlLoading(WebView wv, String url) {
62 // TODO: This method works for Google's redirect url to https://localhost.
63 // Does it work for the general case? I don't know what redirect url other
66 int i = url.lastIndexOf('?');
68 deparameterizedUrl = url;
70 deparameterizedUrl = url.substring(0,i);
74 final Uri uri = Uri.parse(url);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SecureConversationViewFragment.java 62 public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
63 // try to load the url assuming it is a cid url
64 final Uri uri = Uri.parse(url);
71 return super.shouldInterceptRequest(view, url);
75 public void onPageFinished(WebView view, String url) {
80 LogUtils.d(LOG_TAG, "ignoring SCVF.onPageFinished, url=%s fragment=%s", url,

Completed in 1020 milliseconds

<<11121314151617181920>>