HomeSort by relevance Sort by last modified time
    Searched refs:zip (Results 226 - 250 of 652) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/scripts/
build_server.sh 8 # -z: Optional, prevents the final zip and leaves the udate-site directory intact.
15 # - zip resulting stuff and move to $DEST
84 # exclude date from build-zip name so it can be auto-calculated by continuous
88 ZIP_NAME="${BUILD_PREFIX}${preview}-${BUILD_NUMBER:-$DATE}.zip"
99 # Zip it and remove the directory.
106 zip -9r "../$ZIP_NAME" *
108 rm -rfv "$BUILD_PREFIX" # removes the directory, not the zip
109 echo "ZIP of Update site available at $DEST_DIR/${ZIP_NAME}"
  /external/chromium_org/remoting/tools/
zip2msi.py 6 """Generates .msi from a .zip archive or an unpacked directory.
10 +- archive.zip
15 When an unpacked directory is used as the input "archive.zip/archive" should
33 "archive.zip/archive".
35 .wxs relative to "archive.zip/archive".
64 # Sanity check to make sure .zip uses relative paths.
198 # a ZIP archive with the same files. In the latter case the archive should be
205 # Unpack .zip
246 usage = 'Usage: zip2msi [options] <input.zip> <output.msi>'
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 392 template<class ... Args1> struct zip { struct in namespace:WorkingPaperExample
398 typedef zip<short, int>::with<unsigned short, unsigned>::type T1; // T1 is Tuple<Pair<short, unsigned short>, Pair<int, unsigned>>
401 typedef zip<short>::with<unsigned short, unsigned>::type T2; // expected-note{{in instantiation of template class}}
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 32 import java.util.zip.ZipEntry;
33 import java.util.zip.ZipFile;
34 import java.util.zip.ZipOutputStream;
228 // Copy manifest, resources.arsc and res directory to public zip
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 477 """ Exports all files into a zip archive file """
479 zip = z.ZipFile(fileName, 'w')
481 #zip the original .JET file
483 zip.write(jetFile.config.filename, FileJustName(jetFile.config.filename))
488 #zip the files, without paths
491 if not FileJustName(segment.filename) in zip.namelist():
492 zip.write(segment.filename, FileJustName(segment.filename))
494 if not FileJustName(segment.output) in zip.namelist():
495 zip.write(segment.output, FileJustName(segment.output))
497 #zip the library files
    [all...]
  /external/chromium_org/third_party/zlib/
zip.target.darwin-arm.mk 26 third_party/zlib/google/zip.cc \
262 .PHONY: zip
263 zip: third_party_zlib_zip_gyp
zip.target.darwin-mips.mk 26 third_party/zlib/google/zip.cc \
258 .PHONY: zip
259 zip: third_party_zlib_zip_gyp
zip.target.darwin-x86.mk 26 third_party/zlib/google/zip.cc \
262 .PHONY: zip
263 zip: third_party_zlib_zip_gyp
zip.target.linux-arm.mk 26 third_party/zlib/google/zip.cc \
262 .PHONY: zip
263 zip: third_party_zlib_zip_gyp
zip.target.linux-mips.mk 26 third_party/zlib/google/zip.cc \
258 .PHONY: zip
259 zip: third_party_zlib_zip_gyp
zip.target.linux-x86.mk 26 third_party/zlib/google/zip.cc \
262 .PHONY: zip
263 zip: third_party_zlib_zip_gyp
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 407 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
410 # external 'zip' command" and "zip failed".
412 ("unable to create zip file '%s': "
414 "find a standalone zip utility") % zip_filename
417 """Create a zip file from all the files under 'base_dir'.
419 The output zip file will be named 'base_name' + ".zip". Uses either the
420 "zipfile" Python module (if available) or the InfoZIP "zip" utility
422 available, raises ExecError. Returns the name of the output zip
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))])
66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))])
69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))])
72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))])
75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))])
78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shutil.py 407 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
410 # external 'zip' command" and "zip failed".
412 ("unable to create zip file '%s': "
414 "find a standalone zip utility") % zip_filename
417 """Create a zip file from all the files under 'base_dir'.
419 The output zip file will be named 'base_name' + ".zip". Uses either the
420 "zipfile" Python module (if available) or the InfoZIP "zip" utility
422 available, raises ExecError. Returns the name of the output zip
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))])
66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))])
69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))])
72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))])
75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))])
78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))])
  /external/chromium_org/remoting/webapp/
build-webapp.py 11 a zip archive for all of the above is produced.
49 zip = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED)
54 zip.write(full_path, os.path.join(zipfile_base, rel_path))
55 zip.close()
307 '<build-type> <version> <mime-type> <dst> <zip-path> <plugin> '
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 52 import java.util.zip.Inflater;
53 import java.util.zip.InflaterInputStream;
54 import java.util.zip.ZipEntry;
258 // Fix for "PK12 bug in town.zip": sometimes
284 // Fix for "PK56 bug in town.zip":
285 // If there's a zip comment inside the end header,
306 throw new IOException("Cannot find Zip End Header in file!");
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyReader.java 29 import java.util.zip.DataFormatException;
30 import java.util.zip.Inflater;
31 import java.util.zip.InflaterInputStream;
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 29 import java.util.zip.CRC32;
30 import java.util.zip.GZIPInputStream;
31 import java.util.zip.GZIPOutputStream;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_numbers.py 63 for t, (l, h) in zip(unsigned_types, unsigned_ranges):
69 for t, (l, h) in zip(signed_types, signed_ranges):
75 for t, v in zip(bool_types, bool_values):
88 ## for t, (l, h) in zip(unsigned_types, unsigned_ranges):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_numbers.py 63 for t, (l, h) in zip(unsigned_types, unsigned_ranges):
69 for t, (l, h) in zip(signed_types, signed_ranges):
75 for t, v in zip(bool_types, bool_values):
88 ## for t, (l, h) in zip(unsigned_types, unsigned_ranges):
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
VMHostTest.java 27 import java.util.zip.ZipFile;
  /cts/tools/vm-tests-tf/
Android.mk 63 $(hide) cd $(PRIVATE_INTERMEDIATES_HOSTJUNIT_FILES)/classes && zip -q -r ../../android.core.vm-tests-tf.jar .
64 $(hide) cd $(dir $@) && zip -q -r android.core.vm-tests-tf.jar tests
  /external/chromium_org/chrome/test/webdriver/
webdriver_capabilities_parser_unittest.cc 14 #include "third_party/zlib/google/zip.h"
106 base::FilePath zip = temp_dir.path().AppendASCII("data.zip"); local
107 ASSERT_TRUE(zip::Zip(folder, zip, false /* include_hidden_files */));
109 ASSERT_TRUE(file_util::ReadFileToString(zip, &contents));
  /external/chromium_org/tools/tcmalloc/
print-live-objects.py 55 for address, symbol, location in zip(addresses, syms[::2], syms[1::2]):

Completed in 2974 milliseconds

1 2 3 4 5 6 7 8 91011>>