/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/ |
D | Zip64SupportIT.java | 147 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 …]
|
D | DataDescriptorTest.java | 55 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 …]
|
D | UTF8ZipFilesTest.java | 263 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 …]
|
D | ParallelScatterZipCreatorTest.java | 60 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()
|
D | ZipArchiveEntryTest.java | 213 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/ |
D | ZipTestCase.java | 292 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/ |
D | ZipTest.java | 146 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/ |
D | ZstdRoundtripTest.java | 54 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/ |
D | GatherAPIDataOld.java | 141 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()
|
D | GatherAPIData.java | 150 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/ |
D | asm-xml-3.3.jar | META-INF/MANIFEST.MF
org/objectweb/asm/xml/ASMContentHandler$AnnotationDefaultRule. ... |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
D | logback-core-0.9.8-SNAPSHOT.jar | META-INF/
META-INF/MANIFEST.MF
ch/
ch/qos/
ch/ ... |
D | log4j-1.3alpha-8.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 5f2c1f6b420cd82265531d66a2f84bf4.0001f659.honggfuzz.cov | 73 …�"tM�j�:UN�!ȋL�ߞ��z� �<�m��pn}��[U�\�@��߶#n�ޥB`t�4'���>[E�Z4%W./h�zos��4��~�S��\Ր�e9e���…
|
/external/testng/ant/3rdparty/ |
D | cobertura.jar | META-INF/
META-INF/MANIFEST.MF
net/
net/sourceforge/
net/ ... |
/external/hyphenation-patterns/hu/ |
D | hyph-hu.pat.txt | 22612 há2zos 46715 ré2zos 57388 vá2zos 60545 zá2zos
|
/external/hyphenation-patterns/nb/ |
D | hyph-nb.pat.txt | 26536 6zos
|
/external/hyphenation-patterns/nn/ |
D | hyph-nn.pat.txt | 26536 6zos
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | iso-639-3_Name_Index.tab | 8089 zos Francisco León Zoque Zoque, Francisco León
|
D | iso-639-3.tab | 7792 zos I L Francisco León Zoque
|
D | language-subtag-registry | 41701 Subtag: zos
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 24862 brazos %17192 brˈæzəs, brˈɑzos 165624 rhizocephalous rˌaɪzosˈɛfələs 200985 tumazos tumˈɑzos 217878 zos θɔs
|
D | internal_raw_IPA.txt | 21110 brazos %28553 brˈæzəs, brˈɑzos 138827 rhizocephalous rˌaɪzosˈɛfələs 168068 tumazos tumˈɑzos 181879 zos %34547 θɔs
|
D | en-IPA.txt | 21969 $x{zoser → zosər ; # zozər
|