Searched defs:zip (Results 1 - 25 of 85) sorted by relevance

1234

/external/skia/infra/bots/
H A Dzip_utils.py27 def zip(target_dir, zip_file, blacklist=None): # pylint: disable=W0622 function
28 """Zip the given directory, write to the given zip file."""
54 """Unzip the given zip file into the target dir."""
/external/skqp/infra/bots/
H A Dzip_utils.py27 def zip(target_dir, zip_file, blacklist=None): # pylint: disable=W0622 function
28 """Zip the given directory, write to the given zip file."""
54 """Unzip the given zip file into the target dir."""
/external/python/cpython2/Lib/test/
H A Dtest_future_builtins.py4 from future_builtins import hex, oct, map, zip, filter namespace
28 self.assertEqual(zip, izip)
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DFullCartesianExperimentSelector.java79 zip(userParameters.keySet(), userParamsChoice);
93 protected static <K, V> ImmutableMap<K, V> zip(Set<K> keys, Collection<V> values) { method in class:FullCartesianExperimentSelector
/external/jacoco/org.jacoco.report/src/org/jacoco/report/
H A DZipMultiReportOutput.java16 import java.util.zip.ZipEntry;
17 import java.util.zip.ZipOutputStream;
25 private final ZipOutputStream zip; field in class:ZipMultiReportOutput
32 * @param zip
35 public ZipMultiReportOutput(final ZipOutputStream zip) { argument
36 this.zip = zip;
54 zip.putNextEntry(entry);
60 zip.close();
71 zip
[all...]
/external/turbine/javatests/com/google/turbine/zip/
H A DZipTest.java17 package com.google.turbine.zip;
40 import java.util.zip.ZipException;
41 import java.util.zip.ZipOutputStream;
168 assertThat(e).hasMessage("zip file comment length was 33, expected 17");
/external/annotation-tools/asmx/test/perf/org/objectweb/asm/
H A DALLPerfTest.java39 import java.util.zip.ZipEntry;
40 import java.util.zip.ZipFile;
41 import java.util.zip.ZipOutputStream;
53 private static ZipFile zip; field in class:ALLPerfTest
70 ZipFile zip = new ZipFile(System.getProperty("java.home")
74 Enumeration entries = zip.entries();
80 InputStream is = zip.getInputStream(e);
279 // prepares zip files, if necessary
280 if (!(new File(args[0] + "classes1.zip").exists())) {
281 System.out.println("Preparing zip file
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/util/
H A Dalgorithm.hpp76 zip(Rs &&... rs) { function in namespace:clover
/external/tensorflow/tensorflow/python/keras/_impl/keras/preprocessing/
H A Dtext.py28 from six.moves import zip # pylint: disable=redefined-builtin namespace
221 list(zip(sorted_voc, list(range(1,
/external/freetype/src/lzw/
H A Dftlzw.c108 ft_lzw_file_init( FT_LZWFile zip, argument
112 FT_LzwState lzw = &zip->lzw;
116 zip->stream = stream;
117 zip->source = source;
118 zip->memory = stream->memory;
120 zip->limit = zip->buffer + FT_LZW_BUFFER_SIZE;
121 zip->cursor = zip->limit;
122 zip
192 ft_lzw_file_skip_output( FT_LZWFile zip, FT_ULong count ) argument
239 ft_lzw_file_io( FT_LZWFile zip, FT_ULong pos, FT_Byte* buffer, FT_ULong count ) argument
317 FT_LZWFile zip = (FT_LZWFile)stream->descriptor.pointer; local
339 FT_LZWFile zip = (FT_LZWFile)stream->descriptor.pointer; local
352 FT_LZWFile zip = NULL; local
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassPathIterator.java20 import java.util.zip.*;
87 /** Closes all zip files opened by this iterator. */
90 for (ZipFile zip : zips) {
91 zip.close();
119 ZipFile zip = new JarFile(file);
120 zips.add(zip);
121 entries = new ZipIterator(zip);
122 } else if (hasExtension(file.getName(), ".zip")) {
123 ZipFile zip = new ZipFile(file);
124 zips.add(zip);
144 private final ZipFile zip; field in class:ClassPathIterator.ZipIterator
147 ZipIterator(ZipFile zip) argument
[all...]
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/
H A DAbstractTest.class ... objectweb.asm.AbstractTest t java.util.zip.ZipFile zip java.util.Enumeration entries java ...
/external/freetype/src/bzip2/
H A Dftbzip2.c146 ft_bzip2_file_init( FT_BZip2File zip, argument
150 bz_stream* bzstream = &zip->bzstream;
154 zip->stream = stream;
155 zip->source = source;
156 zip->memory = stream->memory;
158 zip->limit = zip->buffer + FT_BZIP2_BUFFER_SIZE;
159 zip->cursor = zip->limit;
160 zip
331 ft_bzip2_file_skip_output( FT_BZip2File zip, FT_ULong count ) argument
361 ft_bzip2_file_io( FT_BZip2File zip, FT_ULong pos, FT_Byte* buffer, FT_ULong count ) argument
431 FT_BZip2File zip = (FT_BZip2File)stream->descriptor.pointer; local
453 FT_BZip2File zip = (FT_BZip2File)stream->descriptor.pointer; local
466 FT_BZip2File zip = NULL; local
[all...]
/external/freetype/src/gzip/
H A Dftgzip.c284 ft_gzip_file_init( FT_GZipFile zip, argument
288 z_stream* zstream = &zip->zstream;
292 zip->stream = stream;
293 zip->source = source;
294 zip->memory = stream->memory;
296 zip->limit = zip->buffer + FT_GZIP_BUFFER_SIZE;
297 zip->cursor = zip->limit;
298 zip
466 ft_gzip_file_skip_output( FT_GZipFile zip, FT_ULong count ) argument
496 ft_gzip_file_io( FT_GZipFile zip, FT_ULong pos, FT_Byte* buffer, FT_ULong count ) argument
566 FT_GZipFile zip = (FT_GZipFile)stream->descriptor.pointer; local
591 FT_GZipFile zip = (FT_GZipFile)stream->descriptor.pointer; local
628 FT_GZipFile zip = NULL; local
[all...]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DGatherAPIData.java57 import java.util.zip.GZIPOutputStream;
58 import java.util.zip.ZipEntry;
59 import java.util.zip.ZipOutputStream;
79 boolean zip; field in class:GatherAPIData
93 } else if (option.equals("-zip")) {
131 } else if (opt.equals("-zip")) {
132 this.zip = true;
152 if (zip) {
153 zos = new ZipOutputStream(new FileOutputStream(output + ".zip"));
H A DGatherAPIDataOld.java57 import java.util.zip.GZIPOutputStream;
58 import java.util.zip.ZipEntry;
59 import java.util.zip.ZipOutputStream;
78 boolean zip; field in class:GatherAPIDataOld
92 } else if (option.equals("-zip")) {
122 } else if (opt.equals("-zip")) {
123 this.zip = true;
143 if (zip) {
144 zos = new ZipOutputStream(new FileOutputStream(output + ".zip"));
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowGeocoder.java24 private String zip; field in class:ShadowGeocoder
50 address.setPostalCode(zip);
84 * @param zip the zip code for the response
87 public void setSimulatedResponse(String address, String city, String state, String zip, String countryCode) { argument
91 this.zip = zip;
/external/scapy/scapy/
H A Dplist.py23 from scapy.modules.six.moves import filter, range, zip namespace
159 lines = plt.plot(*zip(*l), **kargs)
219 lines = [plt.plot(*zip(*pl), **dict(kargs, label=k))
/external/tensorflow/tensorflow/contrib/data/python/ops/
H A Ddataset_ops.py176 @deprecation.deprecated(None, "Use `tf.data.Dataset.zip()`.")
177 def zip(datasets): member in class:Dataset
180 This method has similar semantics to the built-in `zip()` function
195 Dataset.zip((a, b)) == { (1, 4), (2, 5), (3, 6) }
196 Dataset.zip((b, a)) == { (4, 1), (5, 2), (6, 3) }
200 Dataset.zip((a, b, c)) == { (1, 4, (7, 8)),
206 Dataset.zip((a, d)) == { (1, 13), (2, 14) }
/external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/ops/
H A Dseq2seq.py63 from six.moves import zip # pylint: disable=redefined-builtin namespace
1083 for logit, target, weight in zip(logits, targets, weights):
/external/tensorflow/tensorflow/contrib/lite/testing/
H A Dgenerated_examples_zip_test.cc113 // Unzip `zip` file into a new temporary directory `out_dir`.
114 tensorflow::Status UnZip(const string& zip, string* out_dir) { argument
120 TF_CHECK_OK(env->FileExists(zip));
121 proc.SetProgram(unzip_binary, {"unzip", "-d", dir, zip});
158 // Read the manifest.txt out of the unarchived zip file. Specifically
159 // `original_file` is the original zip file for error messages. `dir` is
160 // the temporary directory where the zip file has been unarchived and
186 // Get a list of tests from a zip file `zip_file_name`.
229 // Instantiate a test. This assumes `zip_base`.zip is a declared data file
234 ::testing::ValuesIn(UnarchiveZipAndFindTestNames(#zip_base ".zip")));
[all...]
/external/tensorflow/tensorflow/python/keras/_impl/keras/
H A Doptimizers.py25 from six.moves import zip # pylint: disable=redefined-builtin namespace
125 for pv, p, w in zip(param_values, params, weights):
192 for p, g, m in zip(params, grads, moments):
262 for p, g, a in zip(params, grads, accumulators):
324 for p, g, a in zip(params, grads, accumulators):
388 for p, g, a, d_a in zip(params, grads, accumulators, delta_accumulators):
480 for p, g, m, v, vhat in zip(params, grads, ms, vs, vhats):
568 for p, g, m, u in zip(params, grads, ms, us):
656 for p, g, m, v in zip(params, grads, ms, vs):
/external/turbine/java/com/google/turbine/zip/
H A DZip.java17 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
86 static final int ENDCOM = 20; // zip file comment length
102 /** Iterates over a zip archiv
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp393 template<class ... Args1> struct zip { struct in namespace:WorkingPaperExample
399 typedef zip<short, int>::with<unsigned short, unsigned>::type T1; // T1 is Tuple<Pair<short, unsigned short>, Pair<int, unsigned>>
402 typedef zip<short>::with<unsigned short, unsigned>::type T2; // expected-note{{in instantiation of template class}}
/external/tensorflow/tensorflow/python/data/ops/
H A Ddataset_ops.py378 for ret, dtype in zip(
386 for (ret_array, expected_dtype, expected_shape) in zip(
406 for ret_t, shape in zip(flat_values, flattened_shapes):
469 def zip(datasets): member in class:Dataset
472 This method has similar semantics to the built-in `zip()` function
487 Dataset.zip((a, b)) == { (1, 4), (2, 5), (3, 6) }
488 Dataset.zip((b, a)) == { (4, 1), (5, 2), (6, 3) }
492 Dataset.zip((a, b, c)) == { (1, 4, (7, 8)),
498 Dataset.zip((a, d)) == { (1, 13), (2, 14) }
592 return Dataset.zip((Datase
[all...]

Completed in 906 milliseconds

1234