Searched refs:markSupported (Results 1 - 25 of 34) sorted by relevance

12

/libcore/luni/src/main/java/java/io/
H A DFilterInputStream.java78 * @see #markSupported()
98 public boolean markSupported() { method in class:FilterInputStream
99 return in.markSupported();
130 * @see #markSupported()
H A DFilterReader.java74 * @see #markSupported()
95 public boolean markSupported() { method in class:FilterReader
97 return in.markSupported();
163 * @see #markSupported()
182 * @see #markSupported()
H A DInputStream.java39 * false from {@link #markSupported()} and throw an {@link IOException} when
128 * @see #markSupported()
143 public boolean markSupported() { method in class:InputStream
H A DByteArrayInputStream.java110 * @see #markSupported()
128 public boolean markSupported() { method in class:ByteArrayInputStream
H A DReader.java94 * @see #markSupported()
108 public boolean markSupported() { method in class:Reader
182 * @see #markSupported()
200 * @see #markSupported()
H A DStringReader.java80 * @see #markSupported()
108 public boolean markSupported() { method in class:StringReader
190 * @see #markSupported()
217 * @see #markSupported()
H A DCharArrayReader.java161 public boolean markSupported() { method in class:CharArrayReader
H A DPushbackInputStream.java118 public boolean markSupported() { method in class:PushbackInputStream
H A DPushbackReader.java117 public boolean markSupported() { method in class:PushbackReader
H A DBufferedInputStream.java201 public boolean markSupported() { method in class:BufferedInputStream
/libcore/luni/src/main/java/libcore/net/url/
H A DFtpURLInputStream.java61 public boolean markSupported() { method in class:FtpURLInputStream
62 return is.markSupported();
/libcore/luni/src/test/java/libcore/java/io/
H A DOldFilterReaderTest.java48 public boolean markSupported() { method in class:OldFilterReaderTest.MockReader
103 fr.markSupported();
104 assertTrue("markSupported() has not been called.", called);
H A DOldReaderTest.java69 assertFalse("markSupported must return false", new MockReader().markSupported());
H A DOldFilterInputStreamTest.java129 // Test for method boolean java.io.FilterInputStream.markSupported()
131 // Test 1: Check that markSupported() returns false for a filtered
133 assertFalse("Test 1: markSupported() incorrectly returned true " +
134 "for a FileInputStream.", is.markSupported());
136 // Test 2: Check that markSupported() returns true for a filtered
140 assertTrue("Test 2: markSupported() incorrectly returned false " +
141 "for a BufferedInputStream.", is.markSupported());
H A DOldByteArrayInputStreamTest.java123 // Test for method boolean java.io.ByteArrayInputStream.markSupported()
124 assertTrue("markSupported returned incorrect value", is.markSupported());
H A DOldCharArrayReaderTest.java115 * java.io.CharArrayReader#markSupported()
119 assertTrue("markSupported returned false", cr.markSupported());
H A DOldInputStreamTest.java82 assertFalse("markSupported() has returned the wrong default value.",
83 is.markSupported());
/libcore/luni/src/main/java/java/util/zip/
H A DDeflaterInputStream.java187 public boolean markSupported() { method in class:DeflaterInputStream
H A DInflaterInputStream.java288 public boolean markSupported() { method in class:InflaterInputStream
/libcore/luni/src/main/java/javax/crypto/
H A DCipherInputStream.java190 public boolean markSupported() { method in class:CipherInputStream
/libcore/support/src/test/java/tests/support/
H A DSupport_StringReader.java103 public boolean markSupported() { method in class:Support_StringReader
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
H A DX509CertFactoryImpl.java95 if (!inStream.markSupported()) {
130 if (!inStream.markSupported()) {
240 if (!inStream.markSupported()) {
272 if (!inStream.markSupported()) {
390 if (!inStream.markSupported()) {
788 public boolean markSupported() { method in class:X509CertFactoryImpl.RestoringInputStream
/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLX509CertPath.java139 final boolean markable = inStream.markSupported();
184 final boolean markable = inStream.markSupported();
H A DOpenSSLX509CertificateFactory.java68 final boolean markable = inStream.markSupported();
130 final boolean markable = inStream.markSupported();
H A DHandshakeIODataStream.java103 public boolean markSupported() { method in class:HandshakeIODataStream

Completed in 5454 milliseconds

12