OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CHUNK_SEPARATOR
(Results
1 - 3
of
3
) sorted by null
/external/apache-http/src/org/apache/commons/codec/binary/
Base64.java
58
static final byte[]
CHUNK_SEPARATOR
= "\r\n".getBytes();
259
(
CHUNK_SEPARATOR
.length == 0 ? 0 : (int) Math.ceil((float) encodedDataLength / CHUNK_SIZE));
260
encodedDataLength += nbrChunks *
CHUNK_SEPARATOR
.length;
309
CHUNK_SEPARATOR
,
313
CHUNK_SEPARATOR
.length);
317
(chunksSoFar *
CHUNK_SEPARATOR
.length);
318
encodedIndex +=
CHUNK_SEPARATOR
.length;
360
CHUNK_SEPARATOR
,
363
encodedDataLength -
CHUNK_SEPARATOR
.length,
364
CHUNK_SEPARATOR
.length)
[
all
...]
/external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java
78
static final byte[]
CHUNK_SEPARATOR
= {'\r', '\n'};
243
this(CHUNK_SIZE,
CHUNK_SEPARATOR
, urlSafe);
265
this(lineLength,
CHUNK_SEPARATOR
);
322
lineSeparator =
CHUNK_SEPARATOR
; // this just gets ignored
808
long len = getEncodeLength(binaryData, CHUNK_SIZE,
CHUNK_SEPARATOR
);
816
Base64Codec b64 = isChunked ? new Base64Codec(urlSafe) : new Base64Codec(0,
CHUNK_SEPARATOR
, urlSafe);
[
all
...]
/external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar
Completed in 1786 milliseconds