Searched refs:jarFile (Results 1 - 25 of 35) sorted by relevance

12

/external/guava/guava-tests/test/com/google/common/reflect/
H A DClassPathTest.java233 File jarFile = File.createTempFile("with_circular_class_path", ".jar");
235 writeSelfReferencingJarFile(jarFile, "test.txt");
237 scanner.scan(jarFile.toURI(), ClassPathTest.class.getClassLoader());
240 jarFile.delete();
280 File jarFile = new File("base.jar");
281 ASSERT.that(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifest("")))
286 File jarFile = new File("base.jar");
287 ASSERT.that(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifestClasspath("")))
292 File jarFile = new File("base.jar");
294 ASSERT.that(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifes
430 writeSelfReferencingJarFile(File jarFile, String... entries) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/resource/
H A DJarFileResource.java163 JarFile jarFile=null;
166 jarFile=_jarFile;
174 jarFile=c.getJarFile();
183 if (jarFile!=null && _entry==null && !_directory)
186 Enumeration<JarEntry> e=jarFile.entries();
304 JarFile jarFile=_jarFile;
305 if(jarFile==null)
311 jarFile=jc.getJarFile();
321 Enumeration<JarEntry> e=jarFile.entries();
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/
H A DFolderConverter.java68 File jarFile = new File(sourceRoot.getParent(), sourceRoot.getName()+".jar");
69 FileOutputStream out = new FileOutputStream(jarFile);
/external/guava/guava/src/com/google/common/reflect/
H A DClassPath.java367 JarFile jarFile;
369 jarFile = new JarFile(file);
375 for (URI uri : getClassPathFromManifest(file, jarFile.getManifest())) {
378 Enumeration<JarEntry> entries = jarFile.entries();
388 jarFile.close();
400 File jarFile, @Nullable Manifest manifest) {
411 uri = getClassPathEntry(jarFile, path);
429 @VisibleForTesting static URI getClassPathEntry(File jarFile, String path) argument
435 return new File(jarFile.getParentFile(), path.replace('/', File.separatorChar)).toURI();
399 getClassPathFromManifest( File jarFile, @Nullable Manifest manifest) argument
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidFrameworkMockGenerator.java149 File jarFile = new File(getJarFileNameForVersion(version)).getAbsoluteFile();
150 System.out.println("Using Jar File: " + jarFile.getAbsolutePath());
151 return new JarFile(jarFile);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DCompatibilityTest.java235 JarFile jarFile = conn.getJarFile();
237 Enumeration entries = jarFile.entries();
276 target.add(className, copyInputStream(jarFile.getInputStream(entry)));
282 jarFile.close();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DURLHandler.java187 JarFile jarFile; field in class:URLHandler.JarURLHandler
212 jarFile = conn.getJarFile();
222 Enumeration<JarEntry> entries = jarFile.entries();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
H A DjdtCompilerAdapter.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ ...
/external/vogar/src/vogar/
H A DClassFileIndex.java157 JarFile jarFile = new JarFile(file);
158 for (Enumeration<JarEntry> e = jarFile.entries(); e.hasMoreElements(); ) {
/external/vogar/src/vogar/target/
H A DClassPathScanner.java131 private Set<String> getJarEntries(File jarFile) throws IOException { argument
133 ZipFile zipFile = new ZipFile(jarFile);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.launcher.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLClassLoaderTest.java504 JarFile jarFile = new JarFile(resources.getAbsolutePath() + "/JarIndex/hyts_11.jar");
505 Manifest mf = jarFile.getManifest();
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djdepend-2.9.jarMETA-INF/ META-INF/MANIFEST.MF jdepend/ jdepend/framework/ jdepend/framework/AbstractParser.class AbstractParser. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...

Completed in 1456 milliseconds

12