Home
last modified time | relevance | path

Searched refs:PushbackInputStream (Results 1 – 14 of 14) sorted by relevance

/libcore/luni/src/test/java/libcore/java/io/
DOldPushbackInputStreamTest.java22 import java.io.PushbackInputStream;
29 PushbackInputStream pis;
36 pis = new PushbackInputStream(new ByteArrayInputStream("Hello" in test_ConstructorLjava_io_InputStream()
51 pis = new PushbackInputStream(bas, 0); in test_ConstructorLjava_io_InputStreamI()
57 pis = new PushbackInputStream(bas, -1); in test_ConstructorLjava_io_InputStreamI()
63 pis = new PushbackInputStream(bas , 5); in test_ConstructorLjava_io_InputStreamI()
73 PushbackInputStream tobj; in test_close()
75 tobj = new PushbackInputStream(underlying); in test_close()
78 tobj = new PushbackInputStream(underlying); in test_close()
89 PushbackInputStream tobj; in test_available()
[all …]
DOldAndroidPushbackInputStreamTest.java22 import java.io.PushbackInputStream;
34 PushbackInputStream a = new PushbackInputStream(aa, 7); in testPushbackInputStream()
42 PushbackInputStream b = new PushbackInputStream(ba, 9); in testPushbackInputStream()
50 PushbackInputStream c = new PushbackInputStream(ca); in testPushbackInputStream()
DFilterInputStreamNullSourceTest.java25 import java.io.PushbackInputStream;
101 assertReadsFailWithIoException(new PushbackInputStream(null)); in testPushbackInputStream()
102 assertReadsFailWithIoException(new PushbackInputStream(null, 1024)); in testPushbackInputStream()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DPushbackInputStreamTest.java22 import java.io.PushbackInputStream;
27 PushbackInputStream pis;
32 PushbackInputStream pb = new PushbackInputStream( in test_reset()
43 PushbackInputStream pb = new PushbackInputStream( in test_mark()
57 PushbackInputStream str = new PushbackInputStream(null); in test_ConstructorLjava_io_InputStream()
65 pis = new PushbackInputStream(new ByteArrayInputStream("Hello" in test_ConstructorLjava_io_InputStream()
81 pis = new PushbackInputStream(new ByteArrayInputStream("Hello" in test_ConstructorLjava_io_InputStreamI()
98 PushbackInputStream str = new PushbackInputStream(null, 1); in test_ConstructorLjava_io_InputStreamL()
210 PushbackInputStream pb = new PushbackInputStream( in test_unread$BII()
241 pis = new PushbackInputStream(new ByteArrayInputStream(fileString in setUp()
/libcore/ojluni/src/main/java/sun/misc/
DCharacterDecoder.java31 import java.io.PushbackInputStream;
97 …protected void decodeBufferPrefix(PushbackInputStream aStream, OutputStream bStream) throws IOExce… in decodeBufferPrefix()
100 …protected void decodeBufferSuffix(PushbackInputStream aStream, OutputStream bStream) throws IOExce… in decodeBufferSuffix()
108 …protected int decodeLinePrefix(PushbackInputStream aStream, OutputStream bStream) throws IOExcepti… in decodeLinePrefix()
118 …protected void decodeLineSuffix(PushbackInputStream aStream, OutputStream bStream) throws IOExcept… in decodeLineSuffix()
125 …protected void decodeAtom(PushbackInputStream aStream, OutputStream bStream, int l) throws IOExcep… in decodeAtom()
155 PushbackInputStream ps = new PushbackInputStream (aStream); in decodeBuffer()
DBASE64Decoder.java28 import java.io.PushbackInputStream;
106 protected void decodeAtom(PushbackInputStream inStream, OutputStream outStream, int rem) in decodeAtom()
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DCharacterDecoder.java42 java.io.PushbackInputStream aStream, java.io.OutputStream bStream) in decodeBufferPrefix()
48 java.io.PushbackInputStream aStream, java.io.OutputStream bStream) in decodeBufferSuffix()
54 java.io.PushbackInputStream aStream, java.io.OutputStream bStream) in decodeLinePrefix()
60 java.io.PushbackInputStream aStream, java.io.OutputStream bStream) in decodeLineSuffix()
66 java.io.PushbackInputStream aStream, java.io.OutputStream bStream, int l) in decodeAtom()
DBASE64Decoder.java45 java.io.PushbackInputStream inStream, java.io.OutputStream outStream, int rem) in decodeAtom()
/libcore/ojluni/src/main/java/java/io/
DPushbackInputStream.java53 class PushbackInputStream extends FilterInputStream { class
90 public PushbackInputStream(InputStream in, int size) { in PushbackInputStream() method in PushbackInputStream
107 public PushbackInputStream(InputStream in) { in PushbackInputStream() method in PushbackInputStream
DDataInputStream.java523 if (!(in instanceof PushbackInputStream)) { in readLine()
524 this.in = new PushbackInputStream(in); in readLine()
526 ((PushbackInputStream)in).unread(c2); in readLine()
/libcore/ojluni/src/main/java/java/util/zip/
DZipInputStream.java32 import java.io.PushbackInputStream;
104 super(new PushbackInputStream(in, 512), new Inflater(true), 512); in ZipInputStream()
397 ((PushbackInputStream)in).unread(buf, len - n, n); in readEnd()
410 ((PushbackInputStream)in).unread( in readEnd()
424 ((PushbackInputStream)in).unread( in readEnd()
/libcore/
Dopenjdk_java_files.bp81 "ojluni/src/main/java/java/io/PushbackInputStream.java",
DEXPECTED_UPSTREAM98 …ni/src/main/java/java/io/PushbackInputStream.java,jdk11u/jdk-11.0.13-ga,src/java.base/share/classe…
/libcore/api/
Dcurrent.txt2209 public class PushbackInputStream extends java.io.FilterInputStream {
2210 ctor public PushbackInputStream(java.io.InputStream, int);
2211 ctor public PushbackInputStream(java.io.InputStream);