Searched defs:isURL (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DBase64.java194 private final boolean isURL; field in class:Base64.Encoder
197 private Encoder(boolean isURL, byte[] newline, int linemax, boolean doPadding) { argument
198 this.isURL = isURL;
369 return new EncOutputStream(os, isURL ? toBase64URL : toBase64,
388 return new Encoder(isURL, newline, linemax, false);
392 char[] base64 = isURL ? toBase64URL : toBase64;
469 private final boolean isURL; field in class:Base64.Decoder
472 private Decoder(boolean isURL, boolean isMIME) { argument
473 this.isURL
[all...]

Completed in 32 milliseconds