Searched defs:url (Results 1 - 25 of 290) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/
H A DFileWordReader.java49 public FileWordReader(URL url) throws IOException argument
51 super(new LineNumberReader(new BufferedReader(new InputStreamReader(url.openStream()))),
52 "file '" + url.toString() + "'",
/external/skia/platform_tools/android/bin/
H A Ddownload_toolchains.py11 url = sys.argv[1] variable
15 download_utils.SyncURL(url, filepath)
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url) argument
18 int hs20_web_browser(const char *url);
/external/wpa_supplicant_8/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url) argument
18 int hs20_web_browser(const char *url);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url) argument
18 int hs20_web_browser(const char *url);
/external/cmockery/cmockery_0_1_2/src/example/
H A Ddatabase.h29 const char *url; member in struct:DatabaseConnection
35 DatabaseConnection* connect_to_database(const char * const url,
H A Dproduct_database_test.c27 DatabaseConnection* connect_to_database(const char * const url, argument
29 check_expected(url);
35 expect_string(connect_to_database, url, "products.abcd.org");
44 expect_string(connect_to_database, url, "products.abcd.com");
54 expect_string(connect_to_database, url, "products.abcd.org");
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTree.java38 * @param url The URI of the source tree.
40 public SourceTree(int root, String url) argument
43 m_url = url;
/external/chromium-trace/trace-viewer/tracing/third_party/python_gflags/
H A Dsetup.py40 url='http://code.google.com/p/python-gflags', variable
/external/lldb/test/pexpect-2.4/
H A Dsetup.py12 url='http://pexpect.sourceforge.net/', variable
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DHttpClient.java23 void enqueue(URL url) throws Exception; argument
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
H A DGetExample.java11 String run(String url) throws IOException { argument
13 .url(url)
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowURLSpan.java10 private String url; field in class:ShadowURLSpan
12 public void __constructor__(String url) { argument
13 this.url = url;
18 return url;
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
H A DConfigurator.java48 @param url The URL to parse
51 void doConfigure(URL url, LoggerRepository repository); argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DEmpiricalDistribution.java71 * @param url url of the input file
74 void load(URL url) throws IOException; argument
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_GetLocal.java37 public static File getLocalFile(String url) throws IOException, argument
39 url = Support_Resources.RESOURCE_PACKAGE + url;
40 File temp = cache.get(url);
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url);
53 cache.put(url, temp);
58 public static File getExternalLocalFile(String url) throws IOException, argument
60 File temp = cache.get(url);
62 InputStream in = new URL(url).openStream();
73 cache.put(url, tem
78 getStream(String url) argument
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DHttpsURLConnection_ImplTest.java57 public MyHttpsURLConnection(URL url) { argument
58 super(url);
/external/chromium-trace/trace-viewer/third_party/six/
H A Dsetup.py26 url="http://pypi.python.org/pypi/six/", variable
/external/chromium-trace/trace-viewer/third_party/webapp2/
H A Dsetup.py42 url = 'http://webapp-improved.appspot.com', variable
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/
H A Dsetup.py28 url='http://code.google.com/p/closure-linter', variable
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DGlideUrl.java25 private final URL url; field in class:GlideUrl
30 public GlideUrl(URL url) { argument
31 if (url == null) {
34 this.url = url;
38 public GlideUrl(String url) { argument
39 if (TextUtils.isEmpty(url)) {
40 throw new IllegalArgumentException("String url must not be empty or null: " + url);
42 this.stringUrl = url;
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DJDBCDriver.java85 public boolean acceptsURL(String url) throws SQLException { argument
86 return url.startsWith("sqlite:/") ||
87 url.startsWith("jdbc:sqlite:/");
90 public Connection connect(String url, Properties info) argument
92 if (!acceptsURL(url)) {
96 args[0] = url;
127 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
/external/jetty/src/java/org/eclipse/jetty/xml/
H A DConfigurationProcessor.java34 public void init(URL url, XmlParser.Node root, XmlConfiguration configuration); argument
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DUrlAssetInfo.java19 private URL url; field in class:UrlAssetInfo
22 public static UrlAssetInfo create(AssetManager assetManager, AssetKey key, URL url) throws IOException { argument
25 URLConnection conn = url.openConnection();
29 // For some reason url cannot be reached?
33 return new UrlAssetInfo(assetManager, key, url, in);
37 private UrlAssetInfo(AssetManager assetManager, AssetKey key, URL url, InputStream in) throws IOException { argument
39 this.url = url;
57 URLConnection conn = url.openConnection();
61 throw new AssetLoadException("Failed to read URL " + url, e
[all...]
/external/llvm/utils/lit/
H A Dsetup.py18 url = 'http://llvm.org', variable

Completed in 1283 milliseconds

1234567891011>>