Home
last modified time | relevance | path

Searched refs:lineLength (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Email/src/com/android/email/codec/binary/
DBase64.java117 private final int lineLength; field in Base64
200 public Base64(int lineLength) { in Base64() argument
201 this(lineLength, CHUNK_SEPARATOR); in Base64()
222 public Base64(int lineLength, byte[] lineSeparator) { in Base64() argument
223 this.lineLength = lineLength; in Base64()
226 if (lineLength > 0) { in Base64()
364 if (lineLength > 0) { in encode()
383 if (lineLength > 0 && lineLength <= currentLinePos) { in encode()
DBase64OutputStream.java88 …public Base64OutputStream(OutputStream out, boolean doEncode, int lineLength, byte[] lineSeparator… in Base64OutputStream() argument
91 this.base64 = new Base64(lineLength, lineSeparator); in Base64OutputStream()