Searched refs:url (Results 1 - 25 of 100) sorted by relevance

1234

/dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/midi/
H A DAndroidSequence.java35 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 { argument
48 this.url = url;
57 return url;
H A DAndroidMidiFileReader.java50 public MidiFileFormat getMidiFileFormat(URL url) throws InvalidMidiDataException, IOException { argument
80 public Sequence getSequence(URL url) throws InvalidMidiDataException, IOException { argument
81 return new AndroidSequence(url);
/dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/sampled/
H A DAndroidAudioInputStream.java35 private URL url; field in class:AndroidAudioInputStream
40 * @param url The URL that points to the audio data.
42 public AndroidAudioInputStream(URL url) { argument
45 this.url = url;
54 return url;
H A DAndroidAudioFileReader.java51 public AudioFileFormat getAudioFileFormat(URL url) throws UnsupportedAudioFileException, argument
84 public AudioInputStream getAudioInputStream(URL url) throws UnsupportedAudioFileException, argument
86 return new AndroidAudioInputStream(url);
/dalvik/libcore/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;
/dalvik/libcore/sql/src/main/java/java/sql/
H A DDriver.java43 * @param url
52 public boolean acceptsURL(String url) throws SQLException; argument
58 * @param url
70 public Connection connect(String url, Properties info) throws SQLException; argument
94 * @param url
109 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
H A DDriverManager.java145 * @param url
153 public static Connection getConnection(String url) throws SQLException { argument
154 return getConnection(url, new Properties());
160 * @param url
175 public static Connection getConnection(String url, Properties info) argument
180 if (url == null) {
181 // sql.5=The url cannot be null
191 Connection theConnection = theDriver.connect(url, info);
205 * @param url
217 public static Connection getConnection(String url, Strin argument
239 getDriver(String url) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/res/
H A DXSLTInfo.properties25 vendor-url=http://xml.apache.org/xalan-j
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/
H A DHandler.java34 protected URLConnection openConnection(URL url) throws IOException { argument
35 return new HttpsURLConnectionImpl(url, getDefaultPort());
39 protected URLConnection openConnection(URL url, Proxy proxy) argument
41 if ((url == null) || (proxy == null)) {
42 // K034b=url and proxy can not be null
45 return new HttpsURLConnectionImpl(url, getDefaultPort(), proxy);
H A DHttpsURLConnectionImpl.java49 protected HttpsURLConnectionImpl(URL url, int port) { argument
50 super(url);
51 httpsEngine = new HttpsEngine(url, port);
54 protected HttpsURLConnectionImpl(URL url, int port, Proxy proxy) { argument
55 super(url);
56 httpsEngine = new HttpsEngine(url, port, proxy);
355 protected HttpsEngine(URL url, int port) { argument
356 super(url, port);
359 protected HttpsEngine(URL url, int port, Proxy proxy) { argument
360 super(url, por
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
H A DHandler.java38 * @return A connection to the resource pointed by this url.
39 * @param url
44 public URLConnection openConnection(URL url) throws IOException { argument
45 return openConnection(url, null);
52 * @param url
56 * @return a connection to the resource pointed by this url.
61 * if the url argument is null.
66 public URLConnection openConnection(URL url, Proxy proxy) argument
68 if (null == url) {
69 // K034b=url an
[all...]
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Driver1.java55 public boolean acceptsURL(String url) throws SQLException { argument
57 if (url == null) {
60 // Everything's fine if the quoted url starts with the base url for this
62 if (url.startsWith(baseURL)) {
76 public Connection connect(String url, Properties info) throws SQLException { argument
78 if (this.acceptsURL(url)) {
79 // The datasource name is the remainder of the url after the ":"
80 String datasource = url.substring(baseURL.length() + 1);
105 public DriverPropertyInfo[] getPropertyInfo(String url, Propertie argument
[all...]
H A DTestHelper_Driver4.java53 public boolean acceptsURL(String url) throws SQLException { argument
55 if (url == null) {
58 // Everything's fine if the quoted url starts with the base url for this
60 if (url.startsWith(baseURL)) {
74 public Connection connect(String url, Properties info) throws SQLException { argument
76 if (this.acceptsURL(url)) {
77 // The datasource name is the remainder of the url after the ":"
78 String datasource = url.substring(baseURL.length() + 1);
121 public DriverPropertyInfo[] getPropertyInfo(String url, Propertie argument
[all...]
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_ClassLoader.java31 public abstract ClassLoader getClassLoader(URL url, ClassLoader parent); argument
33 public static ClassLoader getInstance(URL url, ClassLoader parent) { argument
45 return factory.getClassLoader(url, parent);
68 public ClassLoader getClassLoader(URL url, ClassLoader parent) { argument
69 return new DexClassLoader(url.getPath(), tmp.getAbsolutePath(),
80 public ClassLoader getClassLoader(URL url, ClassLoader parent) { argument
81 return new URLClassLoader(new URL[] { url }, parent);
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...]
/dalvik/libcore/luni/src/main/java/java/net/
H A DJarURLConnection.java31 * as follows: <i>jar:{archive-url}!/{entry}</i> where "!/" is called a
60 * @param url
65 protected JarURLConnection(URL url) throws MalformedURLException { argument
66 super(url);
67 file = url.getFile();
72 fileURL = new URL(url.getFile().substring(0,sepIdx));
78 if (null != url.getRef()) {
79 entryName += "#" + url.getRef(); //$NON-NLS-1$
H A DURLClassLoader.java120 static IndexFile readIndexFile(JarFile jf, JarEntry indexEntry, URL url) { argument
125 String parentURLString = getParentURL(url).toExternalForm();
184 private static URL getParentURL(URL url) throws IOException { argument
185 URL fileURL = ((JarURLConnection) url.openConnection()).getJarFileURL();
207 URL url; field in class:URLClassLoader.URLHandler
210 public URLHandler(URL url) { argument
211 this.url = url;
212 this.codeSourceUrl = url;
223 URL resURL = targetURL(url, nam
313 URLJarHandler(URL url, URL jarURL, JarFile jf, String prefixName) argument
322 URLJarHandler(URL url, URL jarURL, JarFile jf, String prefixName, IndexFile index) argument
479 getSubHandler(URL url) argument
498 createURLSubJarHandler(URL url) argument
532 URLFileHandler(URL url) argument
648 addURL(URL url) argument
788 isDirectory(URL url) argument
917 createSearchURL(URL url) argument
1027 createURLHandler(URL url) argument
1031 createURLFileHandler(URL url) argument
1035 createURLJarHandler(URL url) argument
1092 definePackage(String packageName, Manifest manifest, URL url) argument
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
H A DHandler.java35 * this url.
50 * @param url
60 protected void parseURL(URL url, String spec, int start, int limit) { argument
61 String file = url.getFile();
85 // check that the embedded url is valid
90 setURL(url, "jar", "", -1, null, null, file, null, null); //$NON-NLS-1$//$NON-NLS-2$
94 * Build and return the externalized string representation of url.
96 * @return String the externalized string representation of url
97 * @param url
101 protected String toExternalForm(URL url) { argument
[all...]
/dalvik/libcore/sql/src/main/java/SQLite/
H A DJDBCDriver.java62 public boolean acceptsURL(String url) throws SQLException { argument
63 return url.startsWith("sqlite:/") ||
64 url.startsWith("jdbc:sqlite:/");
67 public Connection connect(String url, Properties info) argument
69 if (!acceptsURL(url)) {
73 args[0] = url;
98 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
H A DFtpURLConnection.java107 * @param url
109 protected FtpURLConnection(URL url) { argument
110 super(url);
111 hostName = url.getHost();
112 String parse = url.getUserInfo();
124 uri = url.toURI();
133 * @param url
136 protected FtpURLConnection(URL url, Proxy proxy) { argument
137 this(url);
145 int idx = url
[all...]
/dalvik/libcore/xml/src/main/java/javax/xml/validation/
H A DSecuritySupport.java81 static InputStream getURLInputStream(final URL url) argument
88 return url.openStream();
102 URL url;
104 url = ClassLoader.getSystemResource(name);
107 url = cl.getResource(name);
109 return url;
/dalvik/libcore/xml/src/main/java/javax/xml/xpath/
H A DSecuritySupport.java81 static InputStream getURLInputStream(final URL url) argument
88 return url.openStream();
102 URL url;
104 url = ClassLoader.getSystemResource(name);
107 url = cl.getResource(name);
109 return url;
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/spi/
H A DMidiFileReader.java37 public abstract MidiFileFormat getMidiFileFormat(URL url) argument
46 public abstract Sequence getSequence(URL url) argument
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/spi/
H A DAudioFileReader.java37 public abstract AudioFileFormat getAudioFileFormat(URL url) argument
46 public abstract AudioInputStream getAudioInputStream(URL url) argument
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
H A DHttpsURLConnectionTest.java84 URL url = new URL("https://localhost:55555");
85 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
115 URL url = new URL("https://localhost:55555");
116 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
200 URL url = new URL("https://localhost:55555");
201 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
233 URL url = new URL("https://localhost:55555");
234 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
272 URL url = new URL("https://localhost:55555");
273 HttpsURLConnection connection = (HttpsURLConnection) url
421 MyHttpsURLConnection(URL url) argument
425 MyHttpsURLConnection(URL url, String type) argument
[all...]

Completed in 246 milliseconds

1234