HomeSort by relevance Sort by last modified time
    Searched refs:zip (Results 101 - 125 of 645) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/smack/src/com/kenai/jbosh/
GZIPCodec.java 22 import java.util.zip.GZIPInputStream;
23 import java.util.zip.GZIPOutputStream;
ZLIBCodec.java 22 import java.util.zip.DeflaterOutputStream;
23 import java.util.zip.InflaterInputStream;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future_builtins.py 4 from future_builtins import hex, oct, map, zip, filter namespace
28 self.assertEqual(zip, izip)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future_builtins.py 4 from future_builtins import hex, oct, map, zip, filter namespace
28 self.assertEqual(zip, izip)
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipInputStreamTest.java 18 package libcore.java.util.zip;
25 import java.util.zip.ZipEntry;
26 import java.util.zip.ZipException;
27 import java.util.zip.ZipInputStream;
28 import java.util.zip.ZipOutputStream;
38 InputStream is = Support_Resources.getStream("hyts_ZipFile.zip");
40 System.out.println("file hyts_ZipFile.zip can not be found");
DeflaterInputStreamTest.java 17 package libcore.java.util.zip;
24 import java.util.zip.DeflaterInputStream;
25 import java.util.zip.InflaterInputStream;
OldAndroidDeflateTest.java 17 package libcore.java.util.zip;
22 import java.util.zip.DataFormatException;
23 import java.util.zip.Deflater;
24 import java.util.zip.Inflater;
OldAndroidZipFileTest.java 17 package libcore.java.util.zip;
25 import java.util.zip.ZipEntry;
26 import java.util.zip.ZipFile;
27 import java.util.zip.ZipOutputStream;
39 File file = File.createTempFile("ZipFileTest", ".zip");
  /sdk/adtproductbuild/
Android.mk 8 # ADT_IDE_DEST_DIR: existing directory where to copy the IDE zip files.
10 # ADT_IDE_ZIP_QUALIFIER: either a date or build number to incorporate in the zip names.
72 # Defines the zip filename generated for an OS specific android IDE.
73 define adt-ide-zip
74 $(ADT_IDE_RELEASE_DIR)/android-ide-$(ADT_IDE_ZIP_QUALIFIER)-$(1).$(2).zip
78 # If ADT_IDE_DEST_DIR it also defines the rule to produce the final dest zip.
81 # $3 = the src zip (from out/host/eclipse/artifacts/RcpBuild-...)
83 # $5 = the destination zip with the zipped eclipse ide.
84 # This rule is in used primarily to post process the .zip file that is
94 # In addition, the root folder has a symlink to Eclipse.app/Contents/MacOS/eclipse. Since .zip file
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CheckedInputStreamTest.java 17 package org.apache.harmony.archive.tests.java.util.zip;
24 import java.util.zip.CRC32;
25 import java.util.zip.CheckedInputStream;
44 * @tests java.util.zip.CheckedInputStream#CheckedInputStream(java.io.InputStream,
45 * java.util.zip.Checksum)
56 * @tests java.util.zip.CheckedInputStream#getChecksum()
93 * @tests java.util.zip.CheckedInputStream#skip(long)
GZIPOutputStreamTest.java 17 package org.apache.harmony.archive.tests.java.util.zip;
25 import java.util.zip.Checksum;
26 import java.util.zip.GZIPInputStream;
27 import java.util.zip.GZIPOutputStream;
46 * @tests java.util.zip.GZIPOutputStream#GZIPOutputStream(java.io.OutputStream)
64 * @tests java.util.zip.GZIPOutputStream#GZIPOutputStream(java.io.OutputStream,
84 * @tests java.util.zip.GZIPOutputStream#finish()
87 // test method java.util.zip.GZIPOutputStream.finish()
111 * @tests java.util.zip.GZIPOutputStream#close()
114 // test method java.util.zip.GZIPOutputStream.close(
    [all...]
Adler32Test.java 17 package org.apache.harmony.archive.tests.java.util.zip;
19 import java.util.zip.Adler32;
24 * @tests java.util.zip.Adler32#Adler32()
27 // test method of java.util.zip.Adler32()
33 * @tests java.util.zip.Adler32#getValue()
36 // test methods of java.util.zip.getValue()
60 * @tests java.util.zip.Adler32#reset()
63 // test methods of java.util.zip.reset()
76 * @tests java.util.zip.Adler32#update(int)
79 // test methods of java.util.zip.update(int
    [all...]
  /external/chromium_org/chrome/test/webdriver/
webdriver_util.cc 24 #include "third_party/zlib/google/zip.h"
60 base::FilePath archive = dir.path().AppendASCII("temp.zip");
66 if (!zip::Unzip(archive, unzip_dir)) {
80 *error_msg = "Could not decode base64 zip data";
159 // A file entry within a zip archive. This may be incomplete and is not
160 // guaranteed to be able to parse all types of zip entries.
161 // See http://www.pkware.com/documents/casestudies/APPNOTE.TXT for the zip
164 // The given bytes must contain the whole zip entry and only the entry,
166 static bool FromBytes(const std::string& bytes, ZipEntry* zip,
175 if (!stream.ReadUInt16(&zip->version_needed))
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 24 import java.util.zip.ZipEntry;
25 import java.util.zip.ZipException;
26 import java.util.zip.ZipFile;
27 import java.util.zip.ZipInputStream;
107 * Tries to open an input file as a Zip archive (jar/apk) with a
112 * is not a zip archive
113 * @throws IOException if the file isn't found, or it's a zip and
120 * Try it as a zip file.
125 /* not found, no point in retrying as non-zip */
130 /* not a zip */
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
zip.cc 5 #include "chrome/test/chromedriver/chrome/zip.h"
19 #include <minizip/zip.h>
22 #include "third_party/zlib/contrib/minizip/zip.h"
37 char buf[zip::internal::kZipBufSize];
39 num_bytes = stream.ReadSync(buf, zip::internal::kZipBufSize);
42 DLOG(ERROR) << "Could not write data to zip for path "
69 DLOG(ERROR) << "Could not open zip file entry " << str_path;
79 DLOG(ERROR) << "Could not close zip file entry " << str_path;
96 namespace zip { namespace
106 DLOG(WARNING) << "Failed to open the current file in zip";
    [all...]
  /external/chromium_org/chrome_frame/cfinstall/
build.sh 28 CLOSURE_COMPILER_ZIP=$DEPS_DIR/compiler-latest.zip
40 { wget https://closure-compiler.googlecode.com/files/compiler-latest.zip \
  /external/chromium_org/third_party/zlib/google/
zip.cc 5 #include "third_party/zlib/google/zip.h"
19 #include <minizip/zip.h>
22 #include "third_party/zlib/contrib/minizip/zip.h"
37 char buf[zip::internal::kZipBufSize];
39 num_bytes = stream.ReadSync(buf, zip::internal::kZipBufSize);
42 DLOG(ERROR) << "Could not write data to zip for path "
69 DLOG(ERROR) << "Could not open zip file entry " << str_path;
79 DLOG(ERROR) << "Could not close zip file entry " << str_path;
96 namespace zip { namespace
106 DLOG(WARNING) << "Failed to open the current file in zip";
    [all...]
  /external/proguard/src/proguard/io/
ZipDataEntry.java 26 import java.util.zip.*;
29 * This <code>DataEntry</code> represents a ZIP entry.
  /libcore/luni/src/main/java/java/util/zip/
CheckedInputStream.java 18 package java.util.zip;
  /development/scripts/
combine_sdks.sh 31 echo " BASE and IMAGES should be sdk zip files. The system image files,"
41 TMP_ZIP=tmp.zip
89 # rename the directory to the leaf minus the .zip of OUTPUT
90 LEAF=$(echo "$OUTPUT" | sed -e "s:.*\.zip/::" | sed -e "s:.zip$::")
92 # zip it
93 zip $V -qr "$TMP_ZIP" "$LEAF"
99 OUT_DIR="${OUTPUT//.zip/}"
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_memorizingfile.py 52 for expected, actual in zip(expected_list, actual_list):
73 for expected, actual, read in zip(expected_list, actual_list,
  /external/chromium_org/third_party/icu/source/config/
dist.mk 21 DOCZIP=icu-docs.zip
31 DISTY_FILE_ZIP=$(DISTY_FILE_DIR)/$(DISTY_PREFIX)-src-$(DISTY_VER)-r$(SVNVER).zip
32 DISTY_DOC_ZIP=$(DISTY_FILE_DIR)/$(DISTY_PREFIX)-docs-$(DISTY_VER)-r$(SVNVER).zip
68 ( cd $(DISTY_TMP) ; zip -rlq $(DISTY_FILE_ZIP) icu )
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
GZIPSerializer.java 42 import java.util.zip.GZIPInputStream;
43 import java.util.zip.GZIPOutputStream;
  /external/libogg/
Makefile.am 3 AUTOMAKE_OPTIONS = foreign 1.6 dist-zip
  /external/srec/config/en.us/
config.mk 9 dictionary/cmu6plus.ok.zip \

Completed in 5314 milliseconds

1 2 3 45 6 7 8 91011>>