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

<<11121314151617181920>>

  /external/jetty/src/java/org/eclipse/jetty/util/resource/
BadResource.java 26 import java.net.URL;
32 * A Resource that is returned for a bade URL. Acts as a resource
43 BadResource(URL url, String message)
45 super(url,null);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
UrlLocator.java 42 import java.net.URL;
47 * <code>UrlLocator</code> is a locator that combines a root URL
48 * and the given path in the AssetKey to construct a new URL
55 private URL root;
59 this.root = new URL(rootPath);
69 // URL url = new URL(root, name);
73 URL url = new URL(root.toExternalForm() + name) local
    [all...]
  /external/lldb/scripts/Python/interface/
SBCommunication.i 43 Connect (const char *url);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RequestLineParser.java 60 GenericURI url = urlParser.uriReference(true); local
62 retval.setUri(url);
URLParser.java 39 * Parser For SIP and Tel URLs. Other kinds of URL's are handled by the
40 * J2SE 1.4 URL class.
49 public URLParser(String url) {
50 this.lexer = new Lexer("sip_urlLexer", url);
330 * Parse and return a structure for a generic URL.
332 * @return URI is a URL structure for a SIP url.
587 * Parse and return a structure for a Tel URL.
588 * @return a parsed tel url structure.
601 * Parse and return a structure for a SIP URL
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 71 public OAuthMessage newRequestMessage(String method, String url,
83 OAuthMessage message = new OAuthMessage(method, url, parameters);
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpsURLConnectionImpl.java 21 import java.net.URL;
28 public HttpsURLConnectionImpl(URL url, OkHttpClient client) {
29 this(new HttpURLConnectionImpl(url, client));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaStore.java 20 public static Bitmap getBitmap(ContentResolver cr, Uri url) {
21 return ShadowBitmapFactory.create(url.toString());
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/xml/
DOMConfigurator.java 25 import java.net.URL;
38 static public void configure(URL url) throws FactoryConfigurationError {
59 public void doConfigure(URL url, LoggerRepository repository) {
  /external/wpa_supplicant_8/src/utils/
http-utils.h 49 int http_download_file(struct http_ctx *ctx, const char *url,
51 char * http_post(struct http_ctx *ctx, const char *url, const char *data,
  /external/wpa_supplicant_8/wpa_supplicant/
hs20_supplicant.h 28 const char *url, u8 osu_method);
30 u16 reauth_delay, const char *url);
  /frameworks/base/core/java/android/text/style/
URLSpan.java 34 public URLSpan(String url) {
35 mURL = url;
  /frameworks/base/docs/html/
jd_tag_helpers.js 99 // URL and language lookups
111 var url = res.url;
112 if (url) {
113 ALL_RESOURCES_BY_URL[url] = res;
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 38 public static final String PARAM_URL = "URL";
43 public static final String MSG_NAV_URL = "url";
116 private void navigate(String url, int timeout) {
117 if(url == null) {
118 Log.v(LOGTAG, "URL is null, cancelling...");
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)
    [all...]
  /frameworks/data-binding/gradlePlugin/
build.gradle 51 url config.licenseUrl
  /frameworks/data-binding/integration-tests/IndependentLibrary/app/
build.gradle 50 repository(url: "file://${config.mavenRepoDir}")
  /frameworks/support/customtabs/src/android/support/customtabs/
ICustomTabsService.aidl 32 boolean mayLaunchUrl(in ICustomTabsCallback callback, in Uri url,
  /frameworks/volley/src/main/java/com/android/volley/
Request.java 69 /** URL of this request. */
113 * Creates a new request with the given URL and error listener. Note that
121 public Request(String url, Response.ErrorListener listener) {
122 this(Method.DEPRECATED_GET_OR_POST, url, listener);
127 * URL, and error listener. Note that the normal response listener is not provided here as
131 public Request(int method, String url, Response.ErrorListener listener) {
133 mUrl = url;
137 mDefaultTrafficStatsTag = findDefaultTrafficStatsTag(url);
181 * @return The hashcode of the URL's host component, or 0 if there is none.
183 private static int findDefaultTrafficStatsTag(String url) {
    [all...]
  /packages/apps/Browser/src/com/android/browser/
UiController.java 51 Tab openTab(String url, boolean incognito, boolean setActive,
94 void loadUrl(Tab tab, String url);
  /packages/apps/Browser/tests/src/com/android/browser/tests/utils/
BP2TestCaseHelper.java 146 public Uri insertBookmark(String url, String title) {
149 values.put(BrowserContract.Bookmarks.URL, url);
162 public boolean updateBookmark(Uri uri, String url, String title) {
165 values.put(BrowserContract.Bookmarks.URL, url);
183 public Uri insertHistory(String url, String title) {
186 values.put(BrowserContract.History.URL, url);
194 public boolean updateHistory(Uri uri, String url, String title)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java 27 import java.net.URL;
46 private URL createContent(String jarFile, String inFile)
54 return new URL("jar:file:" + file.getPath() + "!/" + inFile);
58 URL u = createContent("lf.jar", "swt.dll");
63 URL invURL = createContent("InvalidJar.jar", "Test.class");
75 URL u = createContent("TestCodeSigners.jar", "Test.class");
88 URL invURL = createContent("InvalidJar.jar", "Test.class");
100 URL u = createContent("lf.jar", "swt.dll");
108 URL invURL = createContent("InvalidJar.jar", "Test.class");
120 URL u = createContent("lf.jar", "plus.bmp")
132 URL url = new URL("jar:file:\/\/\/bar.jar!\/foo.jar!\/Bugs\/HelloWorld.class"); local
160 URL url = createContent("lf.jar", "missing"); local
229 URL url = new URL("jar:file:" + file.getPath() + "!\/HasAttributes.txt"); local
261 URL url = new URL("jar:file:\/\/\/bar.jar!\/foo.jar!\/Bugs\/HelloWorld.class"); local
301 URL url = new URL("jar:file:" + jarFileName + "!\/" + entry); local
314 URL url = new URL("jar:file:" + jarFileName + "!\/" + entry); local
    [all...]
  /external/boringssl/src/util/bot/go/
bootstrap.py 50 # Platform dependent portion of a download URL. See http://golang.org/dl/.
60 # Download URL root.
69 """URL of a platform specific Go toolset archive."""
118 def install_toolset(toolset_root, url):
125 pkg_path = os.path.join(toolset_root, url[url.rfind('/')+1:])
127 LOGGER.info('Downloading %s...', url)
128 download_file(url, pkg_path)
145 def download_file(url, path):
146 """Fetches |url| to |path|.""
    [all...]
  /external/deqp/external/
fetch_sources.py 14 def __init__(self, url, filename, checksum, dstDir, postExtract=None):
15 self.url = url
39 print "Fetching %s" % pkg.url
41 req = urllib2.urlopen(pkg.url)
  /external/owasp/sanitizer/tools/
googlecode_upload.py 75 file_url: If the upload succeeded, the URL of the file on Google
194 status, reason, url = upload(file_path, project_name, user_name, password,
206 return status, reason, url
242 status, reason, url = upload_find_auth(file_path, options.project,
245 if url:
247 print 'URL: %s' % url
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
URLFetcher.java 30 import java.net.URL;
37 * Helper class for fetching HTTP or HTTPS URL.
50 * Fetches the specified url and returns the content and ttl.
57 * @throws AssociationServiceException if the URL scheme is not http or https or the content
60 public WebContent getWebContentFromUrlWithRetry(URL url, long fileSizeLimit,
68 return getWebContentFromUrl(url, fileSizeLimit, connectionTimeoutMillis);
84 * Fetches the specified url and returns the content and ttl.
87 * @throws AssociationServiceException if the URL scheme is not http or https or the content
90 public WebContent getWebContentFromUrl(URL url, long fileSizeLimit, int connectionTimeoutMillis
    [all...]

Completed in 1408 milliseconds

<<11121314151617181920>>