Home
last modified time | relevance | path

Searched refs:jarName (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/jar/
DOldJarFileTest.java31 private final String jarName = "hyts_patch.jar"; // a 'normal' jar file field in OldJarFileTest
47 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_io_File()
48 new JarFile(new File(resources, jarName)); in test_ConstructorLjava_io_File()
58 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_lang_String()
59 String fileName = (new File(resources, jarName)).getCanonicalPath(); in test_ConstructorLjava_lang_String()
70 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_lang_StringZ()
71 String fileName = (new File(resources, jarName)).getCanonicalPath(); in test_ConstructorLjava_lang_StringZ()
82 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_io_FileZ()
83 new JarFile(new File(resources, jarName), false); in test_ConstructorLjava_io_FileZ()
94 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_io_FileZI()
[all …]
DOldJarEntryTest.java33 private final String jarName = "hyts_patch.jar"; field in OldJarEntryTest
40 Support_Resources.copyFile(resources, null, jarName); in setUp()
41 jarFile = new JarFile(new File(resources, jarName)); in setUp()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
DJarFileTest.java77 private final String jarName = "hyts_patch.jar"; // a 'normal' jar file field in JarFileTest
170 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_io_File()
171 JarFile jarFile = new JarFile(new File(resources, jarName)); in test_ConstructorLjava_io_File()
189 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_lang_String()
190 String fileName = (new File(resources, jarName)).getCanonicalPath(); in test_ConstructorLjava_lang_String()
209 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_lang_StringZ()
210 String fileName = (new File(resources, jarName)).getCanonicalPath(); in test_ConstructorLjava_lang_StringZ()
229 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_io_FileZ()
230 JarFile jarFile = new JarFile(new File(resources, jarName), false); in test_ConstructorLjava_io_FileZ()
249 Support_Resources.copyFile(resources, null, jarName); in test_ConstructorLjava_io_FileZI()
[all …]
DJarInputStreamTest.java44 private String jarName; field in JarInputStreamTest
51 jarName = Support_Resources.getURL("morestuff/hyts_patch.jar"); in setUp()
57 InputStream is = new URL(jarName).openConnection().getInputStream(); in test_ConstructorLjava_io_InputStream()
97 InputStream is = new URL(jarName).openConnection().getInputStream(); in test_getNextJarEntry_Ex()
136 is = new URL(jarName).openConnection().getInputStream(); in test_getManifest()
146 InputStream is = new URL(jarName).openConnection().getInputStream(); in test_getNextJarEntry()
DJarEntryTest.java39 private final String jarName = "hyts_patch.jar"; field in JarEntryTest
56 Support_Resources.copyFile(resources, null, jarName); in setUp()
57 jarFile = new JarFile(new File(resources, jarName)); in setUp()
/libcore/ojluni/src/main/java/sun/misc/
DJarIndex.java194 public void add(String fileName, String jarName) { in add() argument
204 addToList(packageName, jarName, indexMap); in add()
207 addToList(jarName, packageName, jarMap); in add()
214 private void addExplicit(String fileName, String jarName) { in addExplicit() argument
216 addToList(fileName, jarName, indexMap); in addExplicit()
219 addToList(jarName, fileName, jarMap); in addExplicit()
352 String jarName = (String)listItr.next(); in merge() local
354 jarName = path.concat(jarName); in merge()
356 toIndex.add(packageName, jarName); in merge()
DURLClassPath.java877 String jarName = (String)jarFiles[count++];
882 url = new URL(csu, jarName);
902 int pos = jarName.lastIndexOf("/");
904 null : jarName.substring(0, pos + 1)));