Searched refs:isURL (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | Base64.java | 202 private final boolean isURL; field in Base64.Encoder 205 private Encoder(boolean isURL, byte[] newline, int linemax, boolean doPadding) { in Encoder() argument 206 this.isURL = isURL; in Encoder() 398 return new EncOutputStream(os, isURL ? toBase64URL : toBase64, in wrap() 417 return new Encoder(isURL, newline, linemax, false); in withoutPadding() 421 private void encodeBlock(byte[] src, int sp, int sl, byte[] dst, int dp, boolean isURL) { in encodeBlock() argument 422 char[] base64 = isURL ? toBase64URL : toBase64; in encodeBlock() 435 char[] base64 = isURL ? toBase64URL : toBase64; in encode0() 444 encodeBlock(src, sp, sl0, dst, dp, isURL); in encode0() 508 private final boolean isURL; field in Base64.Decoder [all …]
|