HomeSort by relevance Sort by last modified time
    Searched full:zip (Results 426 - 450 of 4289) sorted by null

<<11121314151617181920>>

  /prebuilts/eclipse/platform/
README 1 The Eclipse platform .zip file is used as target platform while building
  /prebuilts/misc/common/groovy/
PREBUILT 4 groovy-src-1.7.0.zip
  /prebuilts/tools/common/easymock-tools/
PREBUILT.txt 8 Download URL: http://sourceforge.net/projects/easymock/files/EasyMock/3.1/easymock-3.1.zip/download
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/
_remote.repositories 3 tycho-bundles-external-0.18.1.zip>central=
  /prebuilts/tools/common/objenesis/
PREBUILT.txt 9 Download URL: http://objenesis.googlecode.com/files/objenesis-1.2-bin.zip
  /external/nist-pkits/
generate-tests.sh 32 echo "Usage: $0 PKITS.pdf PKITS_data.zip"
41 ZIP="${2}"
47 elif [ ! -f "${ZIP}" -o "${ZIP#${ZIP%.zip}}" != ".zip" ]; then
48 echo "The second argument must point to PKITS_data.zip"
80 unzip -q -o -d "${STORAGE_DIR}" "${ZIP}" "${file}"
95 shasum_file "${ZIP}" >> pkits.versio
    [all...]
  /build/tools/ijar/
zip.h 15 // zip.h -- .zip (.jar) file reading/writing routines.
17 // This file specifies the interface to use the ZIP implementation of ijar.
31 // mode might not be set in DOS zip files.
34 // Convert a Unix file mode to a ZIP file attribute
39 // Convert a ZIP file attribute to a Unix file mode
45 // Class interface for building ZIP files
54 // Add a new file to the ZIP, the file will have path "filename"
79 // Finish writing the ZIP file. This method can be called only once
83 // It is here as a convenience to get information on the final generated ZIP
    [all...]
  /docs/source.android.com/src/devices/tech/ota/
tools.jd 31 </i> and <i>incremental</i>. The tool takes the <i>target-files</i> .zip file
44 # first, build the target-files .zip
50 -rw-r----- 1 user eng 69965275 Sep 29 15:51 tardis-target_files.zip
53 <p>The target-files .zip contains everything needed to construct OTA packages.
58 dist_output/tardis-target_files.zip ota_update.zip</b>
61 % <b>ls -l ota_update.zip</b>
62 -rw-r----- 1 user eng 62236561 Sep 29 15:58 ota_update.zip
65 <p>The ota_update.zip is now ready to be sent to test devices (everything is
81 incremental update, you need the target_files .zip from the previous buil
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/
testing.properties.template 21 #name of zip file containing automated testing framework and JUnit test plug-ins
22 testFramework=eclipse-Automated-Tests-${buildId}.zip
25 runtime=eclipse-SDK-${buildId}-win32.zip
40 vmDest=jdk-1_4_2_14-fcs-bin-b03-windows-i586-22_jan_2007.zip
45 #path to tar.gz or zip of vm used to run tests
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 17 package libcore.java.util.zip;
28 import java.util.zip.Deflater;
29 import java.util.zip.Inflater;
30 import java.util.zip.ZipEntry;
31 import java.util.zip.ZipFile;
82 System.out.println("ZIP stress test processing " + file + "...");
84 ZipFile zip = new ZipFile(file); local
85 ZipEntry entry = zip.getEntry("AndroidManifest.xml");
86 InputStream stream = zip.getInputStream(entry);
94 System.out.println("ZIP stress test finished, time was " + (time1- time0) + "ms")
102 ZipFile zip = new ZipFile(file); local
    [all...]
OldZipFileTest.java 18 package libcore.java.util.zip;
25 import java.util.zip.ZipEntry;
26 import java.util.zip.ZipFile;
51 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
71 // the file hyts_zipFile.zip in setup must be included as a resource
78 * java.util.zip.ZipFile#close()
81 // Test for method void java.util.zip.ZipFile.close()
108 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
121 * java.util.zip.ZipFile#getInputStream(java.util.zip.ZipEntry
    [all...]
  /frameworks/base/tools/aapt/
Package.cpp 4 // Package assets into Zip files.
40 ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp<const OutputSet>& outputSet);
41 bool processFile(Bundle* bundle, ZipFile* zip, String8 storageName, const sp<const AaptFile>& file);
43 ssize_t processJarFiles(Bundle* bundle, ZipFile* zip);
49 * On success, "bundle->numPackages" will be the number of Zip packages
60 ZipFile* zip = NULL; local
66 * Prep the Zip archive.
100 zip = new ZipFile;
101 status = zip->open(outputFile.string(), ZipFile::kOpenReadWrite | ZipFile::kOpenCreate);
103 fprintf(stderr, "ERROR: unable to open '%s' as Zip file for writing\n"
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
zip_output_unittest.sh 35 # Test protoc's zip output mode.
55 --cpp_out=$TEST_TMPDIR/testzip.zip --python_out=$TEST_TMPDIR/testzip.zip \
59 echo "Testing output to zip..."
61 unzip -t $TEST_TMPDIR/testzip.zip > $TEST_TMPDIR/testzip.list || fail 'unzip failed.'
64 || fail 'testzip.pb.cc not found in output zip.'
66 || fail 'testzip.pb.h not found in output zip.'
68 || fail 'testzip_pb2.py not found in output zip.'
70 && fail 'Zip file contained manifest.'
  /libcore/ojluni/src/main/native/
zip_util.h 27 * Prototypes for zip file support
117 #define ENDCOM(b) SH(b, 20) /* size of zip file comment */
146 * Support for reading ZIP/JAR files. Some things worth noting:
148 * - Zip file entries larger than 2**32 bytes are not supported.
159 typedef struct jzentry { /* Zip file entry */
165 char *comment; /* optional zip file comment */
205 * Descriptor for a ZIP file.
207 typedef struct jzfile { /* Zip file */
208 char *name; /* zip file name */
210 jlong len; /* length (in bytes) of zip file *
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
Adler32Test.java 17 package org.apache.harmony.tests.java.util.zip;
19 import java.util.zip.Adler32;
24 * java.util.zip.Adler32#Adler32()
27 // test method of java.util.zip.Adler32()
33 * java.util.zip.Adler32#getValue()
36 // test methods of java.util.zip.getValue()
60 * java.util.zip.Adler32#reset()
63 // test methods of java.util.zip.reset()
76 * java.util.zip.Adler32#update(int)
79 // test methods of java.util.zip.update(int
    [all...]
CRC32Test.java 17 package org.apache.harmony.tests.java.util.zip;
19 import java.util.zip.CRC32;
24 * java.util.zip.CRC32#CRC32()
27 // test methods of java.util.zip.CRC32()
33 * java.util.zip.CRC32#getValue()
36 // test methods of java.util.zip.crc32.getValue()
71 * java.util.zip.CRC32#reset()
74 // test methods of java.util.zip.crc32.reset()
89 * java.util.zip.CRC32#update(int)
92 // test methods of java.util.zip.crc32.update(int
    [all...]
CheckedOutputStreamTest.java 17 package org.apache.harmony.tests.java.util.zip;
22 import java.util.zip.Adler32;
23 import java.util.zip.CRC32;
24 import java.util.zip.CheckedOutputStream;
29 * java.util.zip.CheckedOutputStream#CheckedOutputStream(java.io.OutputStream,
30 *java.util.zip.Checksum)
33 // test method java.util.zip.checkedOutputStream.constructor
51 * java.util.zip.CheckedOutputStream#getChecksum()
54 // test method java.util.zip.checkedOutputStream.getChecksum()
84 * java.util.zip.CheckedOutputStream#write(int
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipFile.java 27 package java.util.zip;
50 import static java.util.zip.ZipConstants64.*;
53 * This class is used to read entries from a zip file.
64 private final String name; // zip file name
66 private final boolean locsig; // if zip file starts with LOCSIG (usually true)
79 * Mode flag to open a zip file for reading.
84 * Mode flag to open a zip file and mark it for deletion. The file will be
100 * Opens a zip file for reading.
109 * @param name the name of the zip file
110 * @throws ZipException if a ZIP format error has occurre
    [all...]
  /external/bison/djgpp/
README.in 65 unzip32 bsn@PACKAGE_VERSION@b.zip or
66 djtarx bsn@PACKAGE_VERSION@b.zip or
67 pkunzip -d bsn@PACKAGE_VERSION@b.zip
78 unzip32 bsn@PACKAGE_VERSION@s.zip or
79 djtarx bsn@PACKAGE_VERSION@s.zip or
80 pkunzip -d bsn@PACKAGE_VERSION@s.zip
118 djdev203.zip (or a later but NOT a prior version)
119 bsh204b.zip (or a later but NOT a prior version)
120 gccNNNb.zip, gppNNN.zip, bnuNNNb.zip, makNNNb.zip, filNNNb.zip
    [all...]
  /external/lzma/DOC/
installer.txt 1 7-Zip for installers 9.38
4 7-Zip is a file archiver for Windows NT/2000/2003/2008/XP/Vista/7/8/10.
6 7-Zip for installers is part of LZMA SDK.
9 It's allowed to join 7-Zip SFX module with another software.
10 It's allowed to change resources of 7-Zip's SFX modules.
16 7zr.exe is reduced version of 7za.exe of 7-Zip.
79 Title="7-Zip 4.00"
80 BeginPrompt="Do you want to install the 7-Zip 4.00?"
87 Title="7-Zip 4.00"
88 BeginPrompt="Do you want to install the 7-Zip 4.00?"
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/
ContentTypeDetectorTest.java 23 import java.util.zip.GZIPOutputStream;
24 import java.util.zip.ZipEntry;
25 import java.util.zip.ZipOutputStream;
120 final ZipOutputStream zip = new ZipOutputStream(buffer); local
121 zip.putNextEntry(new ZipEntry("hello.txt"));
122 zip.write("Hello Zip!".getBytes());
123 zip.close();
132 final ZipOutputStream zip = new ZipOutputStream(zipbuffer); local
133 zip.putNextEntry(new ZipEntry("hello.txt"))
    [all...]
  /external/autotest/client/site_tests/platform_CrosDisksArchive/
control 23 archive_types=['zip'], tag='zip')
  /external/jsr330/
build.sh 42 jar cfM build/dist/$NAME-src.zip -C build/src .
43 jar cfM build/tck/dist/$NAME-tck-src.zip -C build/tck/src .
45 jar cfM build/dist/$NAME-javadoc.zip -C build/javadoc .
46 jar cfM build/tck/dist/$NAME-tck-javadoc.zip -C build/tck/javadoc .
50 jar cfM build/$NAME.zip -C build/dist .
51 jar cfM build/$NAME-tck.zip -C build/tck/dist .
56 cp build/dist/$NAME-src.zip build/maven/$NAME-$VERSION-sources.jar
57 cp build/dist/$NAME-javadoc.zip build/maven/$NAME-$VERSION-javadoc.jar
  /external/lzma/CPP/Common/
Sha256Reg.cpp 9 #include "../7zip/ICoder.h"
10 #include "../7zip/Common/RegisterCodec.h"
XzCrc64Reg.cpp 10 #include "../7zip/ICoder.h"
11 #include "../7zip/Common/RegisterCodec.h"

Completed in 521 milliseconds

<<11121314151617181920>>