HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 1 - 25 of 421) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/midi/
AndroidSequence.java 19 import java.net.URL;
27 * URL to the original MIDI data in it, so we can feed it into the Android
33 * Holds the URL to the MIDI data.
35 private URL url; field in class:AndroidSequence
40 * @param url The URL that points to the MIDI data.
45 public AndroidSequence(URL url) throws InvalidMidiDataException {
48 this.url = url
    [all...]
  /dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/sampled/
AndroidAudioInputStream.java 19 import java.net.URL;
27 * URL to the original audio data in it, so we can feed it into the Android
33 * Holds the URL to the MIDI data.
35 private URL url; field in class:AndroidAudioInputStream
40 * @param url The URL that points to the audio data.
42 public AndroidAudioInputStream(URL url) {
45 this.url = url
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
URLStreamHandlerTest.java 13 import java.net.URL;
27 args = {URL.class, URL.class}
31 URL url1 = new URL("ftp://test_url/test?a=b&c=%D0+%D1");
32 URL url2 = new URL("http://test_url/test?a=b&c=%D0+%D1");
35 URL url3 = new URL("http://test_url+/test?a=b&c=%D0+%D1");
63 args = {URL.class
157 URL url = new URL("http:\/\/test.org"); local
198 URL url = new URL("http:\/\/test.org"); local
219 URL url = new URL("http:\/\/test.org"); local
    [all...]
URLClassLoaderTest.java 40 import java.net.URL;
68 public URL getResource(String res) {
70 return new URL("http://test/BogusClassLoader");
79 public URLClassLoaderExt(URL[] urls) {
100 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[])
106 args = {java.net.URL[].class}
109 URL[] u = new URL[0];
115 URL [] urls = {new URL("http://foo.com/foo"),
376 URL url = new URL("http:\/\/" + Support_Configuration.SpecialInetTestAddress); local
609 String url; local
    [all...]
JarURLConnectionTest.java 31 import java.net.URL;
56 private static final URL BASE = getBaseURL();
58 private static URL getBaseURL() {
66 private URL createContent(String jarFile, String inFile)
73 URL fUrl1 = new URL("jar:file:" + file.getPath() + "!/" + inFile);
88 //URL u = new URL("jar:"
91 URL u = createContent("lf.jar", "swt.dll");
97 //URL invURL = new URL("jar:
210 URL url = new URL("jar:file:\/\/\/bar.jar!\/foo.jar!\/Bugs\/HelloWorld.class"); local
263 URL url = null; local
358 URL url = new URL("jar:file:" + file.getPath() + "!\/HasAttributes.txt"); local
403 URL url = new URL("jar:file:\/\/\/bar.jar!\/foo.jar!\/Bugs\/HelloWorld.class"); local
464 URL url = new URL("jar:file:" + jarFileName + "!\/" + entry); local
494 URL url = new URL("jar:file:" + jarFileName + "!\/" + entry); local
    [all...]
ExcludedProxyTest.java 33 import java.net.URL;
71 URL u1 = new URL("http://" + Support_Configuration.HomeAddress);
78 URL u3 = new URL("http://"
89 URL u2 = new URL("http://"
111 URL u4 = new URL("http://"
185 * @tests java.net.URL#openConnection(Proxy
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
EmptyEnumeration.java 20 import java.net.URL;
29 /*package*/ final class EmptyEnumeration implements Enumeration<URL>, Serializable {
52 public URL nextElement() {
VMClassLoader.java 20 import java.net.URL;
37 static URL getResource(String name) {
45 return new URL(urlStr);
60 static Enumeration<URL> getResources(String name) {
61 ArrayList<URL> list = null;
69 list = new ArrayList<URL>();
72 list.add(new URL(urlStr));
84 return new EnumerateListArray<URL>(list);
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLTest.java 51 import java.net.URL;
60 @TestTargetClass(URL.class)
76 * @tests java.net.URL#getHost()
87 URL url = new URL("http", ipv6Host, -1, "myfile"); local
88 assertEquals(("[" + ipv6Host + "]"), url.getHost());
92 * @tests java.net.URL#URL(java.lang.String, java.lang.String, int, java.lang.String)
97 method = "URL",
386 URL url = new URL("http:\/\/web2.javasoft.com\/some+file.html"); local
827 URL url = new URL("http:\/\/www.example.com"); local
847 URL url = new URL("ftp:\/\/myUser:password@host.dom\/etc\/motd"); local
866 URL url = new URL("http:\/\/www.java2s.com:8080"); local
1226 URL url = new URL(new URL(strURL), ref); local
1238 URL url = new URL(strURL); local
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebIconDatabase.h 32 // The userInfo contains the site URL whose icon has changed.
81 @param URL
84 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size;
88 @discussion Returns an icon for a web site URL from memory or disk. nil if none is found.
89 Usually called by a UI element to determine if a site URL has an associated icon.
91 @param URL
95 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache;
99 @discussion Returns an icon URL for a web site URL from memory or disk. nil if none is found.
100 @param URL
    [all...]
WebIconDatabaseDelegate.h 31 - (NSImage *)webIconDatabase:(WebIconDatabase *)webIconDatabase defaultIconForURL:(NSString *)URL withSize:(NSSize)size;
WebKitErrorsPrivate.h 54 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URL;
55 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL;
WebNSPasteboardExtras.h 55 // Finds the best URL from the data on the pasteboard, giving priority to http and https URLs
58 // Writes the URL to the pasteboard with the passed types.
59 - (void)_web_writeURL:(NSURL *)URL andTitle:(NSString *)title types:(NSArray *)types;
68 // Writes an image, URL and other optional types to the pasteboard.
71 URL:(NSURL *)URL
78 URL:(NSURL *)URL
  /external/guava/src/com/google/common/io/
Resources.java 26 import java.net.URL;
32 * Note that even those these methods use {@link URL} parameters, they
45 * read from the given URL.
47 * @param url the URL to read from
51 final URL url) {
52 checkNotNull(url);
55 return url.openStream();
62 * {@link InputStreamReader} that read a URL using the given character set
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebResource.h 36 @discussion A WebResource represents a fully downloaded URL.
46 @method initWithData:URL:MIMEType:textEncodingName:frameName
49 @param URL The URL of the resource.
55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName;
64 @method URL
65 @result The URL of the resource.
67 - (NSURL *)URL;
WebResourcePrivate.h 34 URL:(NSURL *)URL
41 - (id)_initWithData:(NSData *)data URL:(NSURL *)URL response:(NSURLResponse *)response;
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/test_protocol/
Handler.java 21 import java.net.URL;
26 protected URLConnection openConnection(URL u) throws IOException {
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSource2Test.java 25 import java.net.URL;
42 * @tests java.security.CodeSource#CodeSource(java.net.URL,
47 notes = "Verifies constructor with valid URL and null certificate array",
49 args = {java.net.URL.class, java.security.cert.Certificate[].class}
53 // Test for method java.security.CodeSource(java.net.URL,
55 new CodeSource(new java.net.URL("file:///test"), (Certificate[]) null);
60 * @tests java.security.CodeSource#CodeSource(java.net.URL,
67 args = {java.net.URL.class, java.security.CodeSigner[].class}
70 // Test for method java.security.CodeSource(java.net.URL,
73 new CodeSource(new URL("file:///test"), (CodeSigner[]) null)
129 URL url = new java.net.URL("file:\/\/\/test"); local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
URLClassLoader.java 55 * URLs contained in the URL search list.
59 ArrayList<URL> originalUrls;
61 List<URL> searchList;
63 Map<URL, URLHandler> handlerMap = new HashMap<URL, URLHandler>();
73 SubURLClassLoader(URL[] urls) {
77 SubURLClassLoader(URL[] urls, ClassLoader parent) {
116 private HashMap<String, ArrayList<URL>> map;
120 static IndexFile readIndexFile(JarFile jf, JarEntry indexEntry, URL url) {
207 URL url; field in class:URLClassLoader.URLHandler
683 URL url = result.get(i); local
1185 URL url = new URL(new URL(file), element); local
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
Handler.java 22 import java.net.URL;
35 * Returns a connection to the a file pointed by this <code>URL</code> in
38 * @return A connection to the resource pointed by this url.
39 * @param url
40 * URL The URL to which the connection is pointing to
44 public URLConnection openConnection(URL url) throws IOException {
45 return openConnection(url, null);
49 * The behaviour of this method is the same as openConnection(URL)
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_ClassLoader.java 19 import java.net.URL;
31 public abstract ClassLoader getClassLoader(URL url, ClassLoader parent);
33 public static ClassLoader getInstance(URL url, ClassLoader parent) {
45 return factory.getClassLoader(url, parent);
68 public ClassLoader getClassLoader(URL url, ClassLoader parent) {
69 return new DexClassLoader(url.getPath(), tmp.getAbsolutePath(),
80 public ClassLoader getClassLoader(URL url, ClassLoader parent)
    [all...]
  /external/libxml2/include/libxml/
nanohttp.h 26 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,
  /dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
HttpsURLConnectionTest.java 26 import java.net.URL;
58 args = {java.net.URL.class}
62 MyHttpsURLConnection huc = new MyHttpsURLConnection(new URL("https://www.fortify.net/"));
84 URL url = new URL("https://localhost:55555"); local
85 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
97 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"));
115 URL url = new URL("https://localhost:55555") local
200 URL url = new URL("https:\/\/localhost:55555"); local
233 URL url = new URL("https:\/\/localhost:55555"); local
272 URL url = new URL("https:\/\/localhost:55555"); local
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
Handler.java 22 import java.net.URL;
30 * Open a URLConnection on the given URL.
33 protected URLConnection openConnection(URL u) throws IOException {
39 * to the FTP server specified by this <code>URL</code>. If
44 * the URL which the connection is pointing to
47 * @return a connection to the resource pointed by this url.
57 protected URLConnection openConnection(URL u, Proxy proxy)
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
Handler.java 22 import java.net.URL;
36 * <code>URL</code>.
39 * the URL to which the connection is pointing to
40 * @return a connection to the resource pointed by this url.
46 protected URLConnection openConnection(URL u) throws IOException {
52 * to the HTTP server specified by this <code>URL</code>. If the
57 * the URL which the connection is pointing to
60 * @return a connection to the resource pointed by this url.
70 protected URLConnection openConnection(URL u, Proxy proxy)

Completed in 557 milliseconds

1 2 3 4 5 6 7 8 91011>>