Searched refs:URL (Results 1 - 25 of 334) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/
H A DClassPath.java19 import java.net.URL;
53 * Returns the uniform resource locator (URL) of the class file
59 URL find(String classname);
H A DByteArrayClassPath.java19 import java.net.URL;
84 * Obtains the URL.
86 public URL find(String classname) {
91 return new URL("file:/ByteArrayClassPath/" + cname);
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpClientPool.java19 import java.net.URL;
33 /** Get the appropriate HttpClient for sending a request to the given URL. */
34 public org.apache.http.client.HttpClient getHttpClient(URL server);
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DHttpClient.java18 import java.net.URL;
23 void enqueue(URL url) throws Exception;
/external/clang/lib/Basic/
H A DVersion.cpp32 StringRef URL(SVN_REPOSITORY);
34 StringRef URL("");
39 StringRef SVNRepository("$URL$");
40 if (URL.empty()) {
41 URL = SVNRepository.slice(SVNRepository.find(':'),
46 URL = URL.slice(0, URL.find("/src/tools/clang"));
49 size_t Start = URL.find("cfe/");
51 URL
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js4 var idx=document.URL.indexOf("php?");
6 window.open(document.URL+"?fp_type="+type, "_self");
8 window.open(document.URL.substring(0,idx)+"php?fp_type="+type, "_self");
13 var idx=document.URL.indexOf("?");
16 var typeStr=document.URL.substring(idx+1, document.URL.length);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/test_protocol/
H A DHandler.java21 import java.net.URL;
26 protected URLConnection openConnection(URL u) throws IOException {
/external/jetty/src/java/org/eclipse/jetty/xml/
H A DConfigurationProcessor.java21 import java.net.URL;
34 public void init(URL url, XmlParser.Node root, XmlConfiguration configuration);
/external/proguard/src/proguard/
H A DFileWordReader.java24 import java.net.URL;
28 * A <code>WordReader</code> that returns words from a file or a URL.
47 * Creates a new FileWordReader for the given URL.
49 public FileWordReader(URL url) throws IOException
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
H A DConfigurator.java20 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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLClassLoaderTest.java25 import java.net.URL;
64 public URL getResource(String res) {
66 return new URL("http://test/BogusClassLoader");
75 public URLClassLoaderExt(URL[] urls) {
85 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[])
88 URL[] u = new URL[0];
94 URLClassLoader loader = new URLClassLoader(new URL[] { null });
104 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[],
109 URL[]
[all...]
H A DExcludedProxyTest.java27 import java.net.URL;
50 URL u1 = new URL("http://" + Support_Configuration.HomeAddress);
57 URL u3 = new URL("http://localhost");
67 URL u2 = new URL("http://"
89 URL u4 = new URL("http://"
156 * @tests java.net.URL#openConnectio
[all...]
H A DURLEncoderTest.java34 final String URL = "http://" + Support_Configuration.HomeAddress;
39 URLEncoder.encode(URL)).equals(URL));
/external/doclava/src/com/google/doclava/
H A DFederatedSite.java24 import java.net.URL;
33 private final URL baseUrl;
36 public FederatedSite(String name, URL baseUrl) throws ApiParseException {
41 URL xmlUrl = new URL(baseUrl + "/xml/current.xml");
52 public FederatedSite(String name, URL baseUrl, String api) throws ApiParseException {
70 public URL baseUrl() {
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DGlideUrl.java7 import java.net.URL;
11 * unnecessary URL instantiations for loaders that require only string urls rather than URL objects.
18 * To obtain a properly escaped URL, call {@link #toURL()}. To obtain a properly escaped string URL, call
19 * {@link #toURL()} and then {@link java.net.URL#toString()}.
25 private final URL url;
28 private URL safeUrl;
30 public GlideUrl(URL url) {
32 throw new IllegalArgumentException("URL mus
[all...]
H A DUrlLoader.java5 import java.net.URL;
8 * A wrapper class that translates {@link java.net.URL} objects into {@link com.bumptech.glide.load.model.GlideUrl}
12 * @param <T> The type of data that will be loaded from the {@link java.net.URL}s.
14 public class UrlLoader<T> implements ModelLoader<URL, T> {
22 public DataFetcher<T> getResourceFetcher(URL model, int width, int height) {
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DPropertyConfigurator.java19 import java.net.URL;
35 public static void configure(java.net.URL configURL) {
50 public void doConfigure(URL configURL, LoggerRepository hierarchy) {
/external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
H A DURLClassLoaderImplTest.java21 import java.net.URL;
36 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[], java.lang.ClassLoader,
52 final URL base = getClass().getResource("lf.jar");
54 final URL[] urls = { base };
57 final URL res = ucl.findResource("swt.dll");
/external/guava/guava/src/com/google/common/io/
H A DResources.java31 import java.net.URL;
37 * Note that even though these methods use {@link URL} parameters, they
53 * read from the given URL.
55 * @param url the URL to read from
57 * @deprecated Use {@link #asByteSource(URL)} instead. This method is
61 public static InputSupplier<InputStream> newInputStreamSupplier(URL url) {
66 * Returns a {@link ByteSource} that reads from the given URL.
70 public static ByteSource asByteSource(URL url) {
75 * A byte source that reads from a URL using {@link URL#openStrea
[all...]
/external/libxml2/doc/examples/
H A Dreader4.c22 const xmlChar *URL; local
31 * information about the document like the URL, but one must also
40 URL = docPtr->URL;
41 if (NULL == URL) {
42 fprintf(stderr, "Failed to obtain URL\n");
46 fprintf(stderr, "%s: Failed to parse\n", URL);
50 printf("%s: Processed ok\n", (const char *)URL);
/external/libxml2/include/libxml/
H A Dnanohttp.h26 xmlNanoHTTPScanProxy (const char *URL);
28 xmlNanoHTTPFetch (const char *URL,
32 xmlNanoHTTPMethod (const char *URL,
39 xmlNanoHTTPMethodRedir (const char *URL,
47 xmlNanoHTTPOpen (const char *URL,
50 xmlNanoHTTPOpenRedir (const char *URL,
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/file/
H A DFileURLConnectionTest.java20 import java.net.URL;
34 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
53 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
54 URL anchorUrl = new URL(url, "#anchor");
62 URL localURL = new URL(localURLString);
70 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
92 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DUrlLocator.java42 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);
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
H A DOkUrlFactory.java23 import java.net.URL;
47 public HttpURLConnection open(URL url) {
51 HttpURLConnection open(URL url, Proxy proxy) {
62 * Creates a URLStreamHandler as a {@link java.net.URL#setURLStreamHandlerFactory}.
65 * created with {@link java.net.URL#openConnection()}: <pre> {@code
68 * URL.setURLStreamHandlerFactory(new OkUrlFactory(okHttpClient));
75 @Override protected URLConnection openConnection(URL url) {
79 @Override protected URLConnection openConnection(URL url, Proxy proxy) {
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
H A DStreamUrlLoader.java12 import java.net.URL;
15 * A wrapper class that translates {@link java.net.URL} objects into {@link com.bumptech.glide.load.model.GlideUrl}
24 public static class Factory implements ModelLoaderFactory<URL, InputStream> {
26 public ModelLoader<URL, InputStream> build(Context context, GenericLoaderFactory factories) {

Completed in 1316 milliseconds

1234567891011>>