HomeSort by relevance Sort by last modified time
    Searched refs:jarEntry (Results 1 - 11 of 11) sorted by null

  /libcore/luni/src/test/java/libcore/java/util/jar/
OldJarEntryTest.java 22 import java.util.jar.JarEntry;
31 private JarEntry jarEntry;
53 * java.util.jar.JarEntry#JarEntry(java.util.jar.JarEntry)
56 JarEntry newJarEntry = new JarEntry(jarFile.getJarEntry(entryName));
59 jarEntry = null;
61 newJarEntry = new JarEntry(jarEntry)
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarEntryTest.java 25 import java.util.jar.JarEntry;
34 private JarEntry jarEntry;
68 * @tests java.util.jar.JarEntry#JarEntry(java.util.jar.JarEntry)
71 JarEntry newJarEntry = new JarEntry(jarFile.getJarEntry(entryName));
74 jarEntry = null;
76 newJarEntry = new JarEntry(jarEntry)
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
JarInputStream.java 40 private JarEntry mEntry;
42 private JarEntry jarEntry;
121 * Returns the next {@code JarEntry} contained in this stream or {@code
128 public JarEntry getNextJarEntry() throws IOException {
129 return (JarEntry) getNextEntry();
157 verifier.addMetaEntry(jarEntry.getName(),
188 jarEntry = mEntry;
190 jarEntry.setAttributes(null);
192 jarEntry = (JarEntry) super.getNextEntry()
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipEntryTest.java 24 import java.util.jar.JarEntry;
71 JarEntry jarEntry = new JarEntry("foo");
72 jarEntry.setExtra(extra);
73 assertSame("Expected no defensive copy of extra", extra, jarEntry.getExtra());
75 ZipEntry clone = (ZipEntry) jarEntry.clone();
76 assertEquals(JarEntry.class, clone.getClass());
  /libcore/luni/src/main/java/libcore/net/url/
JarURLConnectionImpl.java 36 import java.util.jar.JarEntry;
58 private JarEntry jarEntry;
177 * Returns the JarEntry of the entry referenced by this {@code
180 * @return the JarEntry referenced
186 public JarEntry getJarEntry() throws IOException {
188 return jarEntry;
193 * Look up the JarEntry of the entry referenced by this {@code
200 jarEntry = jarFile.getJarEntry(getEntryName());
201 if (jarEntry == null)
    [all...]
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidFrameworkMockGenerator.java 30 import java.util.jar.JarEntry;
105 List<Class<?>> getClassList(Collection<JarEntry> jarEntries) throws ClassNotFoundException {
107 for (JarEntry jarEntry : jarEntries) {
108 if (jarEntryIsClassFile(jarEntry)) {
109 classList.add(Class.forName(FileUtils.getClassNameFor(jarEntry.getName())));
116 * @return true if the provided JarEntry represents a class file.
118 boolean jarEntryIsClassFile(JarEntry jarEntry) {
119 return jarEntry.getName().endsWith(".class")
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
JarURLConnectionTest.java 29 import java.util.jar.JarEntry;
82 assertEquals("Returned incorrect JarEntry", "plus.bmp", juc
86 assertNull("Returned incorrect JarEntry", juc.getJarEntry());
163 JarEntry jarEntry1 = connection.getJarEntry();
169 JarEntry jarEntry2 = connection.getJarEntry();
218 JarEntry jarEntry = new JarEntry(entry);
219 out.putNextEntry(jarEntry);
254 assertEquals("Returned incorrect JarEntry", "plus.bmp", ju
    [all...]
  /cts/tools/utils/
CollectAllTests.java 44 import java.util.jar.JarEntry;
190 Enumeration<JarEntry> jarEntries = jarFile.entries();
192 JarEntry jarEntry = jarEntries.nextElement();
193 String name = jarEntry.getName();
  /libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java 34 import java.util.jar.JarEntry;
80 JarEntry je = juc.getJarEntry();
140 assertEquals("Returned incorrect JarEntry", "plus.bmp", juc
146 assertNull("Returned incorrect JarEntry", juc.getJarEntry());
236 JarEntry jarEntry1 = connection.getJarEntry();
240 JarEntry jarEntry2 = connection.getJarEntry();
296 JarEntry jarEntry = new JarEntry(entry);
297 out.putNextEntry(jarEntry);
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 58 import java.util.jar.JarEntry;
357 private Certificate[] loadCertificates(JarFile jarFile, JarEntry je,
360 // We must read the stream for the JarEntry to retrieve
511 JarEntry jarEntry = jarFile.getJarEntry(ANDROID_MANIFEST_FILENAME);
512 certs = loadCertificates(jarFile, jarEntry, readBuffer);
516 + jarEntry.getName() + "; ignoring!");
522 Slog.i(TAG, "File " + mArchiveSourcePath + ": entry=" + jarEntry
534 Enumeration<JarEntry> entries = jarFile.entries();
537 final JarEntry je = entries.nextElement()
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 

Completed in 788 milliseconds