/external/slf4j/slf4j-api/src/main/java/org/slf4j/ |
LoggerFactory.java | 28 import java.net.URL; 138 Set<URL> staticLoggerBinderPathSet = findPossibleStaticLoggerBinderPathSet(); 226 private static Set<URL> findPossibleStaticLoggerBinderPathSet() { 229 Set<URL> staticLoggerBinderPathSet = new LinkedHashSet<URL>(); 232 Enumeration<URL> paths; 239 URL path = (URL) paths.nextElement(); 248 private static boolean isAmbiguousStaticLoggerBinderPathSet(Set<URL> staticLoggerBinderPathSet) { 257 private static void reportMultipleBindingAmbiguity(Set<URL> staticLoggerBinderPathSet) [all...] |
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/ |
proxy.go | 12 "net/url" 35 proxyURL, err := url.Parse(allProxy) 54 // proxySchemes is a map from URL schemes to a function that creates a Dialer 55 // from a URL with such a scheme. 56 var proxySchemes map[string]func(*url.URL, Dialer) (Dialer, error) 58 // RegisterDialerType takes a URL scheme and a function to generate Dialers from 59 // a URL with that scheme and a forwarding Dialer. Registered schemes are used 61 func RegisterDialerType(scheme string, f func(*url.URL, Dialer) (Dialer, error)) [all...] |
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/ |
proxy.go | 12 "net/url" 35 proxyURL, err := url.Parse(allProxy) 54 // proxySchemes is a map from URL schemes to a function that creates a Dialer 55 // from a URL with such a scheme. 56 var proxySchemes map[string]func(*url.URL, Dialer) (Dialer, error) 58 // RegisterDialerType takes a URL scheme and a function to generate Dialers from 59 // a URL with that scheme and a forwarding Dialer. Registered schemes are used 61 func RegisterDialerType(scheme string, f func(*url.URL, Dialer) (Dialer, error)) [all...] |
/external/curl/docs/cmdline-opts/ |
get.d | 3 Help: Put the post data in the URL and use GET 7 request that otherwise would be used. The data will be appended to the URL 11 the URL with a HEAD request.
|
next.d | 7 Help: Make next URL use its separate set of options 9 Tells curl to use a separate operation for the following URL and associated 10 options. This allows you to send several URL requests, each with their own
|
ftp-create-dirs.d | 6 When an FTP or SFTP URL/operation uses a path that doesn't currently exist on
|
netrc-optional.d | 2 Help: Use either .netrc or URL
|
/external/mockito/src/test/java/org/mockitoutil/ |
SimplePerRealmReloadingClassLoader.java | 8 import java.net.URL; 34 private static URL[] getPossibleClassPathsUrls() { 35 return new URL[]{ 42 private static URL obtainClassPath() { 47 private static URL obtainClassPath(String className) { 49 String url = SimplePerRealmReloadingClassLoader.class.getClassLoader().getResource(path).toExternalForm(); local 52 return new URL(url.substring(0, url.length() - path.length())); 54 throw new RuntimeException("Classloader couldn't obtain a proper classpath URL", e) [all...] |
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/ |
MavenDependencyResolver.java | 4 import java.net.URL; 29 * same as the input order of dependencies, i.e., urls[i] is the local artifact URL for dependencies[i]. 31 public URL[] getLocalArtifactUrls(DependencyJar... dependencies) { 54 URL[] urls = new URL[dependencies.length]; 57 urls[i] = Util.url(artifacts.get(key(dependencies[i]))); 66 public URL getLocalArtifactUrl(DependencyJar dependency) { 67 URL[] urls = getLocalArtifactUrls(dependency);
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
WebAsset.java | 22 import java.net.URL; 44 private final URL mUrl; 46 private WebAsset(URL url) { 47 int port = url.getPort() != -1 ? url.getPort() : url.getDefaultPort(); 49 mUrl = new URL(url.getProtocol().toLowerCase(), url.getHost().toLowerCase(), port, "") 127 URL url; local [all...] |
/prebuilts/go/darwin-x86/src/net/http/cgi/ |
child_test.go | 52 if g, e := req.URL.String(), "http://example.com/path?a=b"; e != g { 53 t.Errorf("expected URL %q; got %q", e, g) 84 if g, e := req.URL.String(), "https://example.com/path?a=b"; e != g { 85 t.Errorf("expected URL %q; got %q", e, g) 104 if req.URL == nil { 105 t.Fatalf("unexpected nil URL") 107 if g, e := req.URL.String(), "/path?a=b"; e != g { 108 t.Errorf("URL = %q; want %q", g, e) 126 if req.URL == nil { 127 t.Fatalf("unexpected nil URL") [all...] |
/prebuilts/go/darwin-x86/src/net/http/ |
readrequest_test.go | 13 "net/url" 48 URL: &url.URL{ 85 URL: &url.URL{ 111 URL: &url.URL{ [all...] |
/prebuilts/go/linux-x86/src/net/http/cgi/ |
child_test.go | 52 if g, e := req.URL.String(), "http://example.com/path?a=b"; e != g { 53 t.Errorf("expected URL %q; got %q", e, g) 84 if g, e := req.URL.String(), "https://example.com/path?a=b"; e != g { 85 t.Errorf("expected URL %q; got %q", e, g) 104 if req.URL == nil { 105 t.Fatalf("unexpected nil URL") 107 if g, e := req.URL.String(), "/path?a=b"; e != g { 108 t.Errorf("URL = %q; want %q", g, e) 126 if req.URL == nil { 127 t.Fatalf("unexpected nil URL") [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
readrequest_test.go | 13 "net/url" 48 URL: &url.URL{ 85 URL: &url.URL{ 111 URL: &url.URL{ [all...] |
/prebuilts/jdk/jdk8/darwin-x86/jre/lib/ |
flavormap.properties | 12 # property in the appropriate awt.properties file. The specified properties URL 82 URL=application/x-java-url;class=java.net.URL 84 URL=text/uri-list;eoln="\r\n";terminators=1
|
/libcore/luni/src/test/java/libcore/libcore/net/ |
NetworkSecurityPolicyTest.java | 27 import java.net.URL; 100 URL url = new URL("http://localhost:" + server.getPort() + "/test.txt"); local 102 url.openConnection().getContent(); 113 URL url = new URL("http://localhost:" + server.getPort() + "/test.txt"); local 115 url.openConnection().getContent(); 128 URL url = new URL("ftp://localhost:" + server.getPort() + "/test.txt") local 141 URL url = new URL("ftp:\/\/localhost:" + server.getPort() + "\/test.txt"); local 155 URL url = new URL("jar:http:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local 168 URL url = new URL("jar:http:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local 183 URL url = new URL("jar:ftp:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local 196 URL url = new URL("jar:ftp:\/\/localhost:" + server.getPort() + "\/test.jar!\/"); local [all...] |
/art/test/998-redefine-use-after-free/src/ |
Main.java | 39 new java.net.URL[] { new java.net.URL("file://" + location + "/classes-ex/") });
|
/external/curl/tests/libtest/ |
lib1500.c | 30 int test(char *URL) 47 easy_setopt(curls, CURLOPT_URL, URL);
|
lib1511.c | 26 int test(char *URL) 36 easy_setopt(curl, CURLOPT_URL, URL);
|
lib1514.c | 55 int test(char *URL) 66 easy_setopt(curl, CURLOPT_URL, URL);
|
lib1528.c | 27 int test(char *URL) 54 test_setopt(curl, CURLOPT_URL, URL);
|
lib1532.c | 28 int test(char *URL) 38 easy_setopt(curl, CURLOPT_URL, URL);
|
lib502.c | 31 * Get a single URL without select(). 34 int test(char *URL) 47 easy_setopt(c, CURLOPT_URL, URL);
|
lib513.c | 35 int test(char *URL) 52 /* First set the URL that is about to receive our POST. */ 53 test_setopt(curl, CURLOPT_URL, URL);
|
lib544.c | 40 int test(char *URL) 57 /* First set the URL that is about to receive our POST. */ 58 test_setopt(curl, CURLOPT_URL, URL);
|