/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
ZipFileTest.java | 26 import java.util.zip.ZipEntry; 96 protected ZipEntry test_finalize1(ZipFile zip) { 119 * ZipFile zip = new ZipFile(file); ZipEntry entry1 = 152 Enumeration<? extends ZipEntry> enumer = zfile.entries(); 160 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); 176 // Test for method java.util.zip.ZipEntry 178 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 179 assertNotNull("Could not obtain ZipEntry", zentry); 182 assertNotNull("Could not obtain ZipEntry: testdir1/File1.txt", 187 assertNotNull("Could not obtain ZipEntry: testdir1/", zentry) [all...] |
ZipInputStreamTest.java | 26 import java.util.zip.ZipEntry; 36 private ZipEntry zentry; 55 ZipEntry entry = new ZipEntry("myFile"); 219 ZipEntry entry = zis1.getNextEntry();
|
/build/tools/zipalign/ |
Android.mk | 12 ZipEntry.cpp \
|
ZipAlign.cpp | 50 ZipEntry* pEntry; 55 ZipEntry* pNewEntry; 157 ZipEntry* pEntry;
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
ZipInputStreamTest.java | 26 import java.util.zip.ZipEntry; 48 ZipEntry entry = in.getNextEntry();
|
OldZipFileTest.java | 32 import java.util.zip.ZipEntry; 58 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 59 assertNotNull("Could not obtain ZipEntry", zentry); 64 assertNotNull("Must be able to obtain ZipEntry: testdir1", zentry); 115 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 116 assertNotNull("Could not obtain ZipEntry", zentry); 128 * java.util.zip.ZipFile#getInputStream(java.util.zip.ZipEntry) 132 // java.util.zip.ZipFile.getInputStream(java.util.zip.ZipEntry) 133 ZipEntry zentry = null;
|
OldZipInputStreamTest.java | 25 import java.util.zip.ZipEntry; 46 ZipEntry entry = new ZipEntry("myFile"); 158 protected ZipEntry createZipEntry(String name) {
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipEntry.java | 32 * An instance of {@code ZipEntry} represents an entry within a <i>ZIP-archive</i>. 42 public class ZipEntry implements ZipConstants, Cloneable { 65 * Constructs a new {@code ZipEntry} with the specified name. 72 public ZipEntry(String name) { 83 * Gets the comment for this {@code ZipEntry}. 85 * @return the comment for this {@code ZipEntry}, or {@code null} if there 94 * Gets the compressed size of this {@code ZipEntry}. 104 * Gets the checksum for this {@code ZipEntry}. 113 * Gets the extra information for this {@code ZipEntry}. 123 * Gets the compression method for this {@code ZipEntry} [all...] |
ZipInputStream.java | 54 * ZipEntry ze; 71 * @see ZipEntry 85 private ZipEntry currentEntry; 158 if (currentEntry.compressionMethod == ZipEntry.DEFLATED) { 219 * @return the next {@code ZipEntry} contained in the input stream. 222 * @see ZipEntry 224 public ZipEntry getNextEntry() throws IOException { 302 if (currentEntry.compressionMethod == ZipEntry.STORED) { 352 * creates a {@link ZipEntry } with the given name. 356 * @return the created {@code ZipEntry} [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
ReportExporter.java | 34 import java.util.zip.ZipEntry; 73 ZipEntry entry = new ZipEntry(baseName + ".xml");
|
/libcore/luni/src/main/java/java/util/jar/ |
JarInputStream.java | 25 import java.util.zip.ZipEntry; 178 * Returns the next {@code ZipEntry} contained in this stream or {@code 186 public ZipEntry getNextEntry() throws IOException { 210 protected ZipEntry createZipEntry(String name) {
|
JarEntry.java | 29 import java.util.zip.ZipEntry; 39 public class JarEntry extends ZipEntry { 65 * The ZipEntry to obtain values from. 67 public JarEntry(ZipEntry entry) {
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
ZipFileTest.java | 32 import java.util.zip.ZipEntry; 125 protected ZipEntry test_finalize1(ZipFile zip) { 148 * ZipFile zip = new ZipFile(file); ZipEntry entry1 = 198 Enumeration<? extends ZipEntry> enumer = zfile.entries(); 206 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); 231 // Test for method java.util.zip.ZipEntry 233 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 234 assertNotNull("Could not obtain ZipEntry", zentry); 239 assertNotNull("Could not obtain ZipEntry: testdir1/File1.txt", zentry); 241 assertNotNull("Could not obtain ZipEntry: testdir1/", zentry) [all...] |
/bootable/recovery/minzip/ |
Zip.c | 88 * For debugging, dump the contents of a ZipEntry. 91 static void dumpEntry(const ZipEntry* pEntry) 102 * Compare two ZipEntry structs, by name. 106 const ZipEntry* entry1 = (const ZipEntry*) ventry1; 107 const ZipEntry* entry2 = (const ZipEntry*) ventry2; 117 * find a ZipEntry struct by name. 121 const ZipEntry* entry = (const ZipEntry*) ventry [all...] |
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
JarFileTest.java | 33 import java.util.zip.ZipEntry; 318 ZipEntry entry = new ZipEntry("META-INF/"); 321 entry = new ZipEntry(JarFile.MANIFEST_NAME); 325 entry = new ZipEntry("myfile"); 348 * @tests java.util.jar.JarFile#getInputStream(java.util.zip.ZipEntry) 379 * @tests java.util.jar.JarFile#getInputStream(java.util.zip.ZipEntry) 439 ZipEntry zipEntry = entries.nextElement(); 440 jarFile.getInputStream(zipEntry); [all...] |
JarInputStreamTest.java | 29 import java.util.zip.ZipEntry; 170 ZipEntry entry = null; 186 ZipEntry zipEntry = null; 189 while (count == 0 || zipEntry != null) { 192 zipEntry = jin.getNextEntry(); 234 ZipEntry zipEntry = null; 237 while (count == 0 || zipEntry != null) { 240 zipEntry = jin.getNextEntry() [all...] |
JarOutputStreamTest.java | 28 import java.util.zip.ZipEntry; 36 * @tests java.util.jar.JarOutputStream#putNextEntry(java.util.zip.ZipEntry) 136 ZipEntry ze = new ZipEntry("Test");
|
JarEntryTest.java | 27 import java.util.zip.ZipEntry; 32 private ZipEntry zipEntry; 84 * @tests java.util.jar.JarEntry#JarEntry(java.util.zip.ZipEntry) 88 zipEntry = jarFile.getEntry(entryName); 89 assertNotNull("Zip entry is null", zipEntry); 90 jarEntry = new JarEntry(zipEntry); 123 zipEntry = jarFile.getEntry(entryName2); 124 jarEntry = new JarEntry(zipEntry);
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
OldJarInputStreamTest.java | 26 import java.util.zip.ZipEntry; 51 public ZipEntry createZipEntry(String str) {
|
OldJarEntryTest.java | 24 import java.util.zip.ZipEntry; 30 private ZipEntry zipEntry; 69 * java.util.jar.JarEntry#JarEntry(java.util.zip.ZipEntry) 73 zipEntry = jarFile.getEntry(entryName); 74 assertNotNull("Zip entry is null", zipEntry); 75 jarEntry = new JarEntry(zipEntry); 103 zipEntry = jarFile.getEntry(entryName); 104 assertNotNull("Zip entry is null", zipEntry);
|
/external/proguard/src/proguard/io/ |
JarWriter.java | 97 currentJarOutputStream.putNextEntry(new ZipEntry(name)); 143 currentJarOutputStream.putNextEntry(new ZipEntry(name));
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
JarFileTest.java | 40 import java.util.zip.ZipEntry; 474 ZipEntry entry = new ZipEntry("META-INF/"); 477 entry = new ZipEntry(JarFile.MANIFEST_NAME); 481 entry = new ZipEntry("myfile"); 518 * java.util.jar.JarFile#getInputStream(java.util.zip.ZipEntry) 598 ZipEntry zipEntry = entries.nextElement(); 599 jarFile.getInputStream(zipEntry); 611 ZipEntry zipEntry = entries.nextElement() [all...] |
/dalvik/libdex/ |
ZipArchive.cpp | 66 * The values we return for ZipEntry use 0 as an invalid value, so we 74 * Convert a ZipEntry to a hash table index, verifying that it's in a 77 static int entryToIndex(const ZipArchive* pArchive, const ZipEntry entry) 83 LOGW("Zip: invalid ZipEntry %p (%ld)", entry, ent); 425 ZipEntry dexZipFindEntry(const ZipArchive* pArchive, const char* entryName) 437 return (ZipEntry)(long)(ent + kZipEntryAdj); 454 ZipEntry findEntryByIndex(ZipArchive* pArchive, int idx) 465 return (ZipEntry) (ent + kZipEntryAdj); 479 int dexZipGetEntryInfo(const ZipArchive* pArchive, ZipEntry entry, 697 const ZipEntry entry, int fd [all...] |
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
Main.java | 24 import java.util.zip.ZipEntry; 139 ZipEntry entry = zipFile.getEntry(CLASSES_DEX);
|
/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/ |
InstallerActivity.java | 7 import java.util.zip.ZipEntry; 75 ZipEntry entry = zis.getNextEntry();
|