Home
last modified time | relevance | path

Searched refs:zos (Results 1 – 24 of 24) sorted by relevance

/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DZip64SupportIT.java147 final ZipArchiveOutputStream zos = new ZipArchiveOutputStream(f); in write5GBZerosFile() local
149 zos.setUseZip64(Zip64Mode.Always); in write5GBZerosFile()
155 zos.putArchiveEntry(zae); in write5GBZerosFile()
157 zos.write(buf); in write5GBZerosFile()
159 zos.closeArchiveEntry(); in write5GBZerosFile()
160 zos.close(); in write5GBZerosFile()
167 zos.destroy(); in write5GBZerosFile()
208 public void test(final File f, final ZipArchiveOutputStream zos) in write100KFiles()
211 zos.setUseZip64(mode); in write100KFiles()
213 write100KFilesToStream(zos); in write100KFiles() argument
[all …]
DDataDescriptorTest.java55 try (ZipArchiveOutputStream zos = new ZipArchiveOutputStream(o)) { in writesDataDescriptorForDeflatedEntryOnUnseekableOutput() argument
56 zos.putArchiveEntry(new ZipArchiveEntry("test1.txt")); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
57 zos.write("foo".getBytes("UTF-8")); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
58 zos.closeArchiveEntry(); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
95 try (ZipArchiveOutputStream zos = new ZipArchiveOutputStream(f)) { in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput() argument
96 zos.putArchiveEntry(new ZipArchiveEntry("test1.txt")); in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput()
97 zos.write("foo".getBytes("UTF-8")); in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput()
98 zos.closeArchiveEntry(); in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput()
137 try (ZipArchiveOutputStream zos = new ZipArchiveOutputStream(init)) { in doesntWriteDataDescriptorWhenAddingRawEntries() argument
138 zos.putArchiveEntry(new ZipArchiveEntry("test1.txt")); in doesntWriteDataDescriptorWhenAddingRawEntries()
[all …]
DUTF8ZipFilesTest.java263 ZipArchiveOutputStream zos = null; in createTestFile() local
265 zos = new ZipArchiveOutputStream(file); in createTestFile()
266 zos.setEncoding(encoding); in createTestFile()
267 zos.setUseLanguageEncodingFlag(withEFS); in createTestFile()
268 zos.setCreateUnicodeExtraFields(withExplicitUnicodeExtra ? in createTestFile()
287 zos.putArchiveEntry(ze); in createTestFile()
288 zos.write("Hello, world!".getBytes(CharsetNames.US_ASCII)); in createTestFile()
289 zos.closeArchiveEntry(); in createTestFile()
304 zos.putArchiveEntry(ze); in createTestFile()
305 zos.write("Give me your money!".getBytes(CharsetNames.US_ASCII)); in createTestFile()
[all …]
DParallelScatterZipCreatorTest.java60 final ZipArchiveOutputStream zos = new ZipArchiveOutputStream(result); in concurrent() local
61 zos.setEncoding("UTF-8"); in concurrent()
65 zipCreator.writeTo(zos); in concurrent()
66 zos.close(); in concurrent()
76 final ZipArchiveOutputStream zos = new ZipArchiveOutputStream(result); in callableApi() local
77 zos.setEncoding("UTF-8"); in callableApi()
89 zipCreator.writeTo(zos); in callableApi()
90 zos.close(); in callableApi()
DZipArchiveEntryTest.java213 final ZipArchiveOutputStream zos = in testCompressionMethod() local
217 assertFalse(zos.canWriteEntryData(entry)); in testCompressionMethod()
221 assertTrue(zos.canWriteEntryData(entry)); in testCompressionMethod()
225 assertTrue(zos.canWriteEntryData(entry)); in testCompressionMethod()
230 assertFalse(zos.canWriteEntryData(entry)); in testCompressionMethod()
231 zos.close(); in testCompressionMethod()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/
DZipTestCase.java292 ZipArchiveOutputStream zos = null; in testDirectoryEntryFromFile() local
297 zos = new ZipArchiveOutputStream(archive); in testDirectoryEntryFromFile()
300 zos.putArchiveEntry(in); in testDirectoryEntryFromFile()
301 zos.closeArchiveEntry(); in testDirectoryEntryFromFile()
302 zos.close(); in testDirectoryEntryFromFile()
303 zos = null; in testDirectoryEntryFromFile()
315 if (zos != null) { in testDirectoryEntryFromFile()
316 zos.close(); in testDirectoryEntryFromFile()
328 ZipArchiveOutputStream zos = null; in testExplicitDirectoryEntry() local
333 zos = new ZipArchiveOutputStream(archive); in testExplicitDirectoryEntry()
[all …]
/external/turbine/javatests/com/google/turbine/zip/
DZipTest.java146 try (ZipOutputStream zos = new ZipOutputStream(Files.newOutputStream(path))) { in zipFileCommentsAreSupported() argument
147 createEntry(zos, "hello", "world".getBytes(UTF_8)); in zipFileCommentsAreSupported()
148 zos.setComment("this is a comment"); in zipFileCommentsAreSupported()
158 try (ZipOutputStream zos = new ZipOutputStream(Files.newOutputStream(path))) { in malformedComment() argument
159 createEntry(zos, "hello", "world".getBytes(UTF_8)); in malformedComment()
160 zos.setComment("this is a comment"); in malformedComment()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/zstandard/
DZstdRoundtripTest.java54 ZstdCompressorOutputStream zos = oc.wrap(os)) { in roundtrip()
55 IOUtils.copy(is, zos); in roundtrip()
76 …CompressorOutputStream zos = new CompressorStreamFactory().createCompressorOutputStream("zstd", os… in factoryRoundtrip()
77 IOUtils.copy(is, zos); in factoryRoundtrip()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DGatherAPIDataOld.java141 ZipOutputStream zos = null; in run() local
144 zos = new ZipOutputStream(new FileOutputStream(output + ".zip")); in run()
145 zos.putNextEntry(new ZipEntry(output)); in run()
146 os = zos; in run()
159 if (zos != null) { in run()
161 zos.close(); in run()
DGatherAPIData.java150 ZipOutputStream zos = null; in run() local
153 zos = new ZipOutputStream(new FileOutputStream(output + ".zip")); in run()
154 zos.putNextEntry(new ZipEntry(output)); in run()
155 os = zos; in run()
168 if (zos != null) { in run()
170 zos.close(); in run()
/external/owasp/sanitizer/tools/findbugs/lib/
Dasm-xml-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/xml/ASMContentHandler$AnnotationDefaultRule. ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/ ...
Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D5f2c1f6b420cd82265531d66a2f84bf4.0001f659.honggfuzz.cov73 …�"tM�j�:UN�!ȋL�ߞ��z� �<�m ��pn}��[U�\�@��߶#n�ޥB`t� 4'���>[E�Z4%W./h�zos��4��~�S��\Ր�e9e���…
/external/testng/ant/3rdparty/
Dcobertura.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sourceforge/ net/ ...
/external/hyphenation-patterns/hu/
Dhyph-hu.pat.txt22612 há2zos
46715 ré2zos
57388 vá2zos
60545 zá2zos
/external/hyphenation-patterns/nb/
Dhyph-nb.pat.txt26536 6zos
/external/hyphenation-patterns/nn/
Dhyph-nn.pat.txt26536 6zos
/external/cldr/tools/java/org/unicode/cldr/util/data/
Diso-639-3_Name_Index.tab8089 zos Francisco León Zoque Zoque, Francisco León
Diso-639-3.tab7792 zos I L Francisco León Zoque
Dlanguage-subtag-registry41701 Subtag: zos
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt24862 brazos %17192 brˈæzəs, brˈɑzos
165624 rhizocephalous rˌaɪzosˈɛfələs
200985 tumazos tumˈɑzos
217878 zos θɔs
Dinternal_raw_IPA.txt21110 brazos %28553 brˈæzəs, brˈɑzos
138827 rhizocephalous rˌaɪzosˈɛfələs
168068 tumazos tumˈɑzos
181879 zos %34547 θɔs
Den-IPA.txt21969 $x{zoser → zosər ; # zozər