OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getUncompressedBinaryContent
(Results
1 - 5
of
5
) sorted by null
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
PartiallyUncompressingPipeTest.java
56
Assert.assertArrayEquals(entry.
getUncompressedBinaryContent
(), outBuffer.toByteArray());
69
new ByteArrayInputStream(entry.
getUncompressedBinaryContent
()), compressBuffer);
73
Assert.assertArrayEquals(entry.
getUncompressedBinaryContent
(), outBuffer.toByteArray());
92
expected.write(entryA.
getUncompressedBinaryContent
());
100
expected.write(entryB.
getUncompressedBinaryContent
());
UnitTestZipEntry.java
84
public byte[]
getUncompressedBinaryContent
() {
95
* {@link #
getUncompressedBinaryContent
()}.
100
return
getUncompressedBinaryContent
();
107
compressor.compress(new ByteArrayInputStream(
getUncompressedBinaryContent
()), buffer);
UnitTestZipArchive.java
163
byte[] uncompressedContent = unitTestEntry.
getUncompressedBinaryContent
();
179
zipOut.write(unitTestEntry.
getUncompressedBinaryContent
());
239
testEntry.
getUncompressedBinaryContent
().length, entry.getCompressedSize());
248
testEntry.
getUncompressedBinaryContent
(), uncompressedData.toByteArray());
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
PartiallyCompressingOutputStreamTest.java
51
private static long LENGTH1 = ENTRY1.
getUncompressedBinaryContent
().length;
63
private static long LENGTH2 = ENTRY2.
getUncompressedBinaryContent
().length;
111
0, ENTRY1.
getUncompressedBinaryContent
().length, PARAMS1);
114
stream.write(ENTRY1.
getUncompressedBinaryContent
());
125
byte[] input = fuse(PREAMBLE_BYTES, ENTRY1.
getUncompressedBinaryContent
());
138
byte[] input = fuse(PREAMBLE_BYTES, ENTRY1.
getUncompressedBinaryContent
(), GAP1_BYTES);
155
ENTRY1.
getUncompressedBinaryContent
(),
157
ENTRY2.
getUncompressedBinaryContent
());
FileByFileV1DeltaApplierTest.java
64
private static final byte[] UNCOMPRESSED_OLD_CONTENT = OLD_ENTRY.
getUncompressedBinaryContent
();
66
private static final byte[] UNCOMPRESSED_NEW_CONTENT = NEW_ENTRY.
getUncompressedBinaryContent
();
230
newBlobOut.write(NEW_ENTRY.
getUncompressedBinaryContent
());
Completed in 230 milliseconds