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

/external/guava/guava/src/com/google/common/io/
H A DBaseEncoding.java261 ByteInput decodedInput = decodingStream(asCharInput(chars));
282 public final InputStream decodingStream(Reader reader) { method in class:BaseEncoding
283 return asInputStream(decodingStream(asCharInput(reader)));
295 public final InputSupplier<InputStream> decodingStream( method in class:BaseEncoding
301 return decodingStream(readerSupplier.getInput());
316 return decodingStream(encodedSource.openStream());
329 abstract ByteInput decodingStream(CharInput charInput); method in class:BaseEncoding
683 ByteInput decodingStream(final CharInput reader) { method in class:BaseEncoding.StandardBaseEncoding
886 ByteInput decodingStream(final CharInput input) { method in class:BaseEncoding.SeparatedBaseEncoding
887 return delegate.decodingStream(ignoringInpu
[all...]
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
H A DBaseEncoding.java209 ByteInput decodedInput = decodingStream(asCharInput(chars));
232 abstract ByteInput decodingStream(CharInput charInput); method in class:BaseEncoding
586 ByteInput decodingStream(final CharInput reader) { method in class:BaseEncoding.StandardBaseEncoding
789 ByteInput decodingStream(final CharInput input) { method in class:BaseEncoding.SeparatedBaseEncoding
790 return delegate.decodingStream(ignoringInput(input, separatorChars));

Completed in 761 milliseconds