Searched refs:url (Results 1 - 25 of 5464) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py113 url = download_base + egg_name variable
134 version, download_base, delay, url
136 log.warn("Downloading %s", url)
137 src = urllib2.urlopen(url)
H A Dsetup.py288 url="http://www.antlr.org/",
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DClassUnloadDebuggee.java179 URL url = getResource(res);
181 InputStream is = url.openStream();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/file/
H A DFileURLConnectionTest.java25 import libcore.net.url.FileURLConnection;
34 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
35 assertNotNull("Cannot find test resource " + resourceName, url);
36 return new FileURLConnection(url).getContentType();
53 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
54 URL anchorUrl = new URL(url, "#anchor");
61 String localURLString = "file://localhost/" + url.getFile();
70 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
71 FileURLConnection conn = new FileURLConnection(url);
77 url
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java140 // create url connection to be tested
141 URL url = new URL("https://localhost:" + ss.getLocalPort());
142 HttpsURLConnection connection = (HttpsURLConnection) url
180 // create url connection to be tested
181 URL url = new URL("https://localhost:" + ss.getLocalPort());
182 HttpsURLConnection connection = (HttpsURLConnection) url
218 // create url connection to be tested
219 URL url = new URL("https://localhost:" + ss.getLocalPort());
220 HttpsURLConnection connection = (HttpsURLConnection) url
264 URL url
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLClassLoaderTest.java462 String url;
464 url = "file:" + path + resPackage + "subfolder/";
466 url = "jar:file:" + path + "!" + resPackage + "subfolder/";
467 urlVec.addElement(new URL(url));
H A DURLConnectionTest.java49 public MockURLConnection(URL url) { argument
50 super(url);
82 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
83 assertNotNull("Cannot find test resource " + resourceName, url);
84 return url.openConnection().getContentType();
87 URL url; field in class:URLConnectionTest
91 url = new URL("http://localhost/");
92 uc = url.openConnection();
514 URL url = new URL("http", "test", 80, "index.html", new NewHandler());
515 URLConnection urlCon = url
[all...]
/external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
H A DURLClassLoaderImplTest.java28 import libcore.net.url.JarHandler;
/external/apache-harmony/security/src/test/api/java.injected/java/security/
H A DSecureClassLoaderTest.java181 URL url = new URL("http://localhost");
182 CodeSource cs = new CodeSource(url, (Certificate[]) null);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProtectionDomainTest.java40 private URL url = null; field in class:ProtectionDomainTest
56 url = new URL("http://localhost");
60 cs = new CodeSource(url, (java.security.cert.Certificate[]) null);
63 classldr = URLClassLoader.newInstance(new URL[] { url });
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDriverManagerTest.java533 public boolean acceptsURL(String url) { argument
542 public boolean acceptsURL(String url) { argument
543 return url.equals(goodurl);
546 public Connection connect(String url, Properties info) { argument
550 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) { argument
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...]
/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/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java52 URL url = null;
58 url = new URL("file:/" + resPath + "/" + fileName);
62 return url.toString();
118 public static File getExternalLocalFile(String url) throws IOException, MalformedURLException { argument
120 InputStream in = new URL(url).openStream();
151 URL url = ClassLoader.getSystemClassLoader().getResource(name);
152 if (url == null) {
157 return new File(url.toURI()).getAbsolutePath();
/external/apache-harmony/support/src/test/java/tests/util/
H A DSerializationTester.java145 URL url = SerializationTester.class.getClassLoader().getResource(
147 if (null == url) {
153 input = url.openStream();
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DHttpsURLConnectionTest.java107 public MyHttpsURLConnection(URL url) { argument
108 super(url);
/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/apache-http/src/org/apache/commons/logging/
H A DLogFactory.java1363 private static Properties getProperties(final URL url) { argument
1368 InputStream stream = url.openStream();
1377 logDiagnostic("Unable to read URL " + url);
1420 URL url = (URL) urls.nextElement();
1422 Properties newProps = getProperties(url);
1425 propsUrl = url;
1435 "[LOOKUP] Properties file found at '" + url + "'"
1448 "[LOOKUP] Properties file at '" + url + "'"
1454 propsUrl = url;
1460 "[LOOKUP] Properties file at '" + url
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DLogFactoryImpl.java993 URL url;
996 url = currentCL.getResource(resourceName );
998 url = ClassLoader.getSystemResource(resourceName + ".class");
1001 if (url == null) {
1004 logDiagnostic("Class '" + logAdapterClassName + "' was found at '" + url + "'");
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java222 * @param url URL string on which an equality test will be performed.
224 * @return true if the stack contains the url argument.
226 private boolean stackContains(Stack stack, String url) argument
236 if (url2.equals(url))
598 // url.equals(Constants.S_XSLNAMESPACEURL))
H A DXSLTAttributeDef.java1240 String url = handler.getNamespaceForPrefix(prefix);
1242 if (url != null)
1243 strings.addElement(url);
1278 String url = handler.getNamespaceForPrefix(prefix);
1279 if (prefix.equals(Constants.ATTRVAL_DEFAULT_PREFIX) || url != null)
/external/apache-xml/src/main/java/org/apache/xalan/res/
H A DXSLTInfo.properties25 vendor-url=http://xml.apache.org/xalan-j

Completed in 371 milliseconds

1234567891011>>