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

/libcore/ojluni/src/main/java/sun/nio/cs/
H A DStreamDecoder.java37 public class StreamDecoder extends Reader class in inherits:Reader
61 public static StreamDecoder forInputStreamReader(InputStream in,
71 return new StreamDecoder(in, lock, Charset.forName(csn));
76 public static StreamDecoder forInputStreamReader(InputStream in,
80 return new StreamDecoder(in, lock, cs);
83 public static StreamDecoder forInputStreamReader(InputStream in,
87 return new StreamDecoder(in, lock, dec);
93 public static StreamDecoder forDecoder(ReadableByteChannel ch,
97 return new StreamDecoder(ch, dec, minBufferCap);
231 StreamDecoder(InputStrea method in class:StreamDecoder
238 StreamDecoder(InputStream in, Object lock, CharsetDecoder dec) { method in class:StreamDecoder
257 StreamDecoder(ReadableByteChannel ch, CharsetDecoder dec, int mbc) { method in class:StreamDecoder
[all...]

Completed in 56 milliseconds