OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deflated
(Results
1 - 5
of
5
) sorted by null
/external/okhttp/okio/src/test/java/okio/
InflaterSourceTest.java
31
OkBuffer
deflated
= decodeBase64("eJxzz09RyEjNKVAoLdZRKE9VL0pVyMxTKMlIVchIzEspVshPU0jNS8/MS00tK"
local
33
OkBuffer inflated = inflate(
deflated
);
38
OkBuffer
deflated
= decodeBase64("eJxzz09RyEjNKVAoLdZRKE9VL0pVyMxTKMlIVchIzEspVshPU0jNS8/MS00tK"
local
41
inflate(
deflated
);
48
OkBuffer
deflated
= decodeBase64("eJztwTEBAAAAwqCs61/CEL5AAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
local
66
OkBuffer inflated = inflate(
deflated
);
72
OkBuffer
deflated
= deflate(original);
local
73
OkBuffer inflated = inflate(
deflated
);
94
/** Returns a new buffer containing the inflated contents of {@code
deflated
}. */
95
private OkBuffer inflate(OkBuffer
deflated
) throws IOException
[
all
...]
GzipSourceTest.java
33
gzipped.write(
deflated
);
46
gzipped.write(
deflated
);
56
gzipped.write(
deflated
);
66
gzipped.write(
deflated
);
76
gzipped.write(
deflated
);
94
gzipped.write(
deflated
);
112
gzipped.write(
deflated
);
126
gzipped.write(
deflated
);
141
gzipped.write(
deflated
);
193
//
Deflated
"It's a UNIX system! I know this!
194
private final ByteString
deflated
= ByteString.decodeHex(
field in class:GzipSourceTest
[
all
...]
DeflaterSinkTest.java
113
* Uses streaming decompression to inflate {@code
deflated
}. The input must
116
private OkBuffer inflate(OkBuffer
deflated
) throws IOException {
117
InputStream deflatedIn =
deflated
.inputStream();
122
while (!inflater.needsInput() ||
deflated
.size() > 0 || deflatedIn.available() > 0) {
/external/okhttp/okio/src/main/java/okio/
DeflaterSink.java
80
int
deflated
= syncFlush
local
84
if (
deflated
> 0) {
85
s.limit +=
deflated
;
86
buffer.size +=
deflated
;
102
// Emit
deflated
data to the underlying sink. If this fails, we still need
/external/chromium_org/third_party/jinja2/
environment.py
602
zip='
deflated
', log_function=None,
659
zip_file = ZipFile(target, 'w', dict(
deflated
=ZIP_DEFLATED,
[
all
...]
Completed in 630 milliseconds