HomeSort by relevance Sort by last modified time
    Searched refs:Zip (Results 1 - 25 of 31) sorted by null

1 2

  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-zip.hpp 10 /*! \file rx-zip.hpp
27 \snippet zip.cpp zip sample
28 \snippet output.txt zip sample
31 \snippet zip.cpp Coordination zip sample
32 \snippet output.txt Coordination zip sample
35 \snippet zip.cpp Selector zip sample
36 \snippet output.txt Selector zip sampl
136 struct zip : public operator_base<rxu::value_type_t<zip_traits<Coordination, Selector, ObservableN...>>> struct in namespace:rxcpp::operators::detail
164 zip(coordination_type sf, selector_type s, tuple_source_type ts) function in struct:rxcpp::operators::detail::zip
    [all...]
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
113-line-and-file-macros.c 6 6: Zip code for Nortonville, KS: __LINE__ __LINE__ __FILE__ __LINE__ __FILE__
114-paste-integer-tokens.c 6 6: Zip code for Nortonville, KS: PASTE5(__LINE__, __LINE__, __FILE__, __LINE__, __FILE__)
  /external/turbine/java/com/google/turbine/binder/
ClassPathBinder.java 32 import com.google.turbine.zip.Zip;
103 for (Zip.Entry ze : new Zip.ZipIterable(path)) {
134 private static Supplier<byte[]> toByteArrayOrDie(Zip.Entry ze) {
CtSymClassBinder.java 33 import com.google.turbine.zip.Zip;
63 for (Zip.Entry ze : new Zip.ZipIterable(ctSym)) {
111 private static Supplier<byte[]> toByteArrayOrDie(Zip.Entry ze) {
  /external/jdiff/
build.gradle 65 task dist(type: Zip, dependsOn: uploadArchives) {
  /external/doclava/
build.gradle 110 task dist(type: Zip, dependsOn: uploadArchives) {
  /external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 434 FIDictionary.Add('Zip',7);
497 Key := 'Zip';
538 Foo, Bar, Baz, Zip: Boolean;
543 Zip := False;
565 if (Pair.Key = 'Zip') then
567 Zip := True;
576 CheckTrue(Zip);
  /external/turbine/java/com/google/turbine/main/
Main.java 42 import com.google.turbine.zip.Zip;
61 import java.util.zip.ZipEntry;
180 for (Zip.Entry ze : new Zip.ZipIterable(Paths.get(sourceJar))) {
  /external/lzma/CPP/7zip/
7zip.mak 126 $(ZIP_OBJS): ../../Archive/Zip/$(*B).cpp
228 {../../Archive/Zip}.cpp{$O}.obj::
  /cts/tests/signature/api-check/shared-libs-api/
Android.mk 27 LOCAL_MODULE_STEM := shared-libs-all.api.zip
33 @echo "Zip API files $^ -> $@"
36 $(hide) zip -q $@ $^
60 shared-libs-all.api.zip \
  /cts/tests/signature/api-check/system-api/
Android.mk 26 LOCAL_MODULE_STEM := system-all.api.zip
32 @echo "Zip API files $^ -> $@"
35 $(hide) zip -q $@ $^
46 system-all.api.zip
  /external/turbine/javatests/com/google/turbine/zip/
ZipTest.java 17 package com.google.turbine.zip;
40 import java.util.zip.ZipException;
41 import java.util.zip.ZipOutputStream;
48 /** {@link Zip}Test */
102 for (Zip.Entry e : new Zip.ZipIterable(path)) {
168 assertThat(e).hasMessage("zip file comment length was 33, expected 17");
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
ClassPath.java 34 import java.util.zip.ZipEntry;
35 import java.util.zip.ZipFile;
52 return name.endsWith(".zip") || name.endsWith(".jar");
82 list.add(new Zip(new ZipFile(file)));
86 if (path.endsWith(".zip") || path.endsWith(".jar")) {
367 /** Contains information about file/ZIP entry of the Java class.
382 * to that path, which may either denote a directory, or zip file
476 private static class Zip extends PathEntry {
478 private final ZipFile zip;
481 Zip(final ZipFile z)
    [all...]
  /developers/build/
build.gradle 230 task emitGradleZip(dependsOn: [emitBrowseable, emitGradle], type:Zip) {
233 archiveName = "${samplegen.targetSampleName()}.zip"
  /build/soong/zip/cmd/
main.go 28 "android/soong/zip"
104 fileArgsBuilder = zip.NewFileArgsBuilder()
123 respArgs := zip.ReadRespFile(bytes)
133 out := flags.String("o", "", "file to write zip file to")
135 directories := flags.Bool("d", false, "include directories in zip")
137 emulateJar := flags.Bool("jar", false, "modify the resultant .zip to emulate the output of 'jar'")
138 writeIfChanged := flags.Bool("write_if_changed", false, "only update resultant .zip if it has changed")
140 symlinks := flags.Bool("symlinks", true, "store symbolic links in zip instead of following them")
146 flags.Var(&rootPrefix{}, "P", "path prefix within the zip at which to place files")
148 flags.Var(&dir{}, "D", "directory to include in zip")
    [all...]
  /external/v8/src/compiler/
persistent-map.h 29 // - Zip: O(n)
81 for (const std::tuple<Key, Value, Value>& triple : Zip(other)) {
115 ZipIterable Zip(const PersistentMap& other) const { return {*this, other}; }
  /development/build/tools/
mk_sdk_repo_xml.sh 26 Usage: $0 output.xml xml-schema [type [os zip[:dest]]*...]*
31 There can be more than one zip for the same type
33 Zip can be in the form "source:dest" to be renamed on the fly.
362 # these attributes from the first zip found.
453 # Skip to next arch/zip entry.
  /external/turbine/java/com/google/turbine/zip/
Zip.java 17 package com.google.turbine.zip;
37 import java.util.zip.Inflater;
38 import java.util.zip.InflaterInputStream;
39 import java.util.zip.ZipException;
42 * A fast, minimal, and somewhat garbage zip implementation. This exists because graal <a
44 * support</a> {@link java.util.zip.ZipFile}, and {@link java.util.zip.ZipInputStream} doesn't have
64 * directory. Archives modified with zip -A may not be supported. Trailing garbage is not
69 * <li>Zip files larger than Integer.MAX_VALUE bytes are not supported.
74 public class Zip {
    [all...]
  /build/soong/cmd/multiproduct_kati/
main.go 37 "android/soong/zip"
324 args := zip.ZipArgs{
325 FileArgs: []zip.FileArg{
328 OutputFilePath: filepath.Join(config.DistDir(), "logs.zip"),
332 if err := zip.Zip(args); err != nil {
406 args := zip.ZipArgs{
407 FileArgs: []zip.FileArg{
413 OutputFilePath: filepath.Join(mpctx.Config.OutDir(), product+".zip"),
417 if err := zip.Zip(args); err != nil
    [all...]
  /build/soong/third_party/zip/
reader.go 5 package zip package
19 ErrFormat = errors.New("zip: not a valid zip file")
20 ErrAlgorithm = errors.New("zip: unsupported compression algorithm")
21 ErrChecksum = errors.New("zip: checksum error")
38 zip *Reader
48 // OpenReader will open the Zip file specified by name and return a ReadCloser.
84 return fmt.Errorf("archive/zip: TOC declares impossible %d files in %d byte zip", end.directoryRecords, size)
95 // The count of files inside a zip is truncated to fit in a uint16
    [all...]
  /build/soong/zip/
zip.go 15 package zip package
37 "android/soong/third_party/zip"
48 // Size of the ZIP compression window (32KB)
199 fh *zip.FileHeader
274 // Have Glob follow symlinks if they are not being stored as symlinks in the zip file.
370 func Zip(args ZipArgs) error {
432 zipMethod := zip.Deflate
434 zipMethod = zip.Store
460 // the the layout of your zip file. 1000 was chosen mostly at random as
479 pathMappings = append(pathMappings, pathMapping{jar.ManifestFile, manifest, zip.Deflate}
    [all...]
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 136 Zip,
  /external/pdfium/xfa/fxfa/parser/
xfa_basic_data_enum.cpp 49 {0xc8b65f3, L"zip", XFA_AttributeEnum::Zip},
  /external/v8/src/arm/
simulator-arm.cc     [all...]

Completed in 1898 milliseconds

1 2