Searched refs:isURL (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | Base64.java | 194 private final boolean isURL; field in Base64.Encoder 197 private Encoder(boolean isURL, byte[] newline, int linemax, boolean doPadding) { in Encoder() argument 198 this.isURL = isURL; in Encoder() 369 return new EncOutputStream(os, isURL ? toBase64URL : toBase64, in wrap() 388 return new Encoder(isURL, newline, linemax, false); in withoutPadding() 392 char[] base64 = isURL ? toBase64URL : toBase64; in encode0() 469 private final boolean isURL; field in Base64.Decoder 472 private Decoder(boolean isURL, boolean isMIME) { in Decoder() argument 473 this.isURL = isURL; in Decoder() 647 return new DecInputStream(is, isURL ? fromBase64URL : fromBase64, isMIME); in wrap() [all …]
|