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

1 2 34 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
ZIPSerializer.java 42 import java.util.zip.ZipEntry;
43 import java.util.zip.ZipInputStream;
44 import java.util.zip.ZipOutputStream;
47 * Serializes ZIP messages.
99 ZipEntry zipEntry = new ZipEntry("zip");
  /libcore/benchmarks/src/benchmarks/
BufferedZipFileBenchmark.java 26 import java.util.zip.ZipEntry;
27 import java.util.zip.ZipFile;
28 import java.util.zip.ZipOutputStream;
37 file = File.createTempFile(getClass().getName(), ".zip");
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidChecksumTest.java 17 package libcore.java.util.zip;
21 import java.util.zip.Adler32;
22 import java.util.zip.CRC32;
InflaterTest.java 17 package libcore.java.util.zip;
20 import java.util.zip.Adler32;
21 import java.util.zip.Deflater;
22 import java.util.zip.Inflater;
OldAndroidZipStreamTest.java 17 package libcore.java.util.zip;
22 import java.util.zip.ZipEntry;
23 import java.util.zip.ZipInputStream;
24 import java.util.zip.ZipOutputStream;
39 FileOutputStream outFile = new FileOutputStream("/tmp/foo.zip");
45 FileInputStream inFile = new FileInputStream("/tmp/foo.zip");
  /art/test/etc/
default-build 29 zip $TEST_NAME.jar classes.dex
41 zip $TEST_NAME-ex.jar classes.dex
  /dalvik/tests/etc/
default-build 29 zip test.jar classes.dex
40 zip test-ex.jar classes.dex
  /external/chromium_org/chrome/common/safe_browsing/
zip_analyzer.cc 15 zip::ZipReader reader;
17 VLOG(1) << "Failed to open zip file";
24 VLOG(1) << "Could not advance to next entry, aborting zip scan.";
28 VLOG(1) << "Failed to open current entry in zip file";
  /external/chromium_org/chrome/test/chromedriver/chrome/
zip.h 11 namespace zip { namespace
13 // Zip the contents of src_dir into dest_file. src_path must be a directory.
14 // An entry will *not* be created in the zip for the root folder -- children
15 // of src_dir will be at the root level of the created zip. For each file in
26 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
32 // to the |src_dir| and will be used as the file names in the created zip file.
42 } // namespace zip
  /external/chromium_org/components/test/data/autofill/merge/tools/
reserialize_profiles_from_query.py 33 profiles.append(zip(types, values))
flatten.py 13 'Address line 1', 'Address line 2', 'City', 'State', 'ZIP code',
51 transposed = zip(*profiles)
59 profile_format = zip(column_formats, profile)
  /external/chromium_org/third_party/zlib/google/
zip.h 11 namespace zip { namespace
13 // Zip the contents of src_dir into dest_file. src_path must be a directory.
14 // An entry will *not* be created in the zip for the root folder -- children
15 // of src_dir will be at the root level of the created zip. For each file in
26 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
32 // to the |src_dir| and will be used as the file names in the created zip file.
42 } // namespace zip
zip_unittest.cc 16 #include "third_party/zlib/google/zip.h"
75 ASSERT_TRUE(zip::Unzip(path, test_dir_));
106 // Hard-coded contents of a known zip file.
109 // Hard-coded list of relative paths for a zip file created with ZipFiles.
114 TestUnzipFile(FILE_PATH_LITERAL("test.zip"), true);
118 TestUnzipFile(FILE_PATH_LITERAL("test_nocompress.zip"), true);
124 path = path.AppendASCII("evil.zip");
125 // Unzip the zip file into a sub directory of test_dir_ so evil.zip
129 ASSERT_FALSE(zip::Unzip(path, output_dir))
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
Adler32.java 18 package java.util.zip;
CRC32.java 18 package java.util.zip;
CheckedOutputStream.java 18 package java.util.zip;
ZipConstants.java 18 package java.util.zip;
22 * in this package whose names start "Zip", and the constants are thereby
  /libcore/luni/src/test/java/libcore/java/io/
FilterInputStreamNullSourceTest.java 29 import java.util.zip.CRC32;
30 import java.util.zip.CheckedInputStream;
31 import java.util.zip.Inflater;
32 import java.util.zip.InflaterInputStream;
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 18 package org.apache.harmony.archive.tests.java.util.zip;
32 import java.util.zip.ZipEntry;
33 import java.util.zip.ZipException;
34 import java.util.zip.ZipFile;
51 // the file hyts_zipFile.zip in setup must be included as a resource
73 * java.util.zip.ZipFile#ZipFile(java.io.File)
76 // Test for method java.util.zip.ZipFile(java.io.File)
81 * java.util.zip.ZipFile#ZipFile(java.io.File, int)
86 ZipFile zip = new ZipFile(file, ZipFile.OPEN_DELETE | ZipFile.OPEN_READ); local
87 zip.close()
114 ZipFile zip = new ZipFile(tempFileName); local
    [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /cts/suite/audio_quality/
Android.mk 23 CTS_AUDIO_QUALITY_ZIP := $(HOST_OUT)/cts-audio-quality/android-cts-audio-quality.zip
39 zip -rq $(notdir $@) android-cts-audio-quality -x android-cts-audio-quality/reports/\*
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
ZipLocator.java 40 import java.util.zip.ZipEntry;
41 import java.util.zip.ZipFile;
44 * <code>ZipLocator</code> is a locator that looks up resources in a .ZIP file.
65 throw new AssetLoadException("Failed to load zip entry: "+entry, ex);
74 throw new AssetLoadException("Failed to open zip file: " + rootPath, ex);
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 22 import java.util.zip.GZIPInputStream;
23 import java.util.zip.InflaterInputStream;

Completed in 4236 milliseconds

1 2 34 5 6 7 8 91011>>