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

12

/libcore/ojluni/src/main/java/java/io/
H A DFilterReader.java98 public boolean markSupported() { method in class:FilterReader
99 return in.markSupported();
H A DFilterInputStream.java233 * simply performs <code>in.markSupported()</code>.
242 public boolean markSupported() { method in class:FilterInputStream
243 return in.markSupported();
H A DByteArrayInputStream.java237 * <code>markSupported</code> method of <code>ByteArrayInputStream</code>
242 public boolean markSupported() { method in class:ByteArrayInputStream
H A DInputStream.java283 * <code>markSupported</code> returns <code>true</code>, the stream somehow
309 * <li> If the method <code>markSupported</code> returns
326 * <li> If the method <code>markSupported</code> returns
354 * particular input stream instance. The <code>markSupported</code> method
362 public boolean markSupported() { method in class:InputStream
H A DReader.java214 public boolean markSupported() { method in class:Reader
H A DStringReader.java152 public boolean markSupported() { method in class:StringReader
H A DCharArrayReader.java187 public boolean markSupported() { method in class:CharArrayReader
H A DPushbackInputStream.java334 public boolean markSupported() { method in class:PushbackInputStream
H A DPushbackReader.java235 public boolean markSupported() { method in class:PushbackReader
/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.java127 // Test for method boolean java.io.FilterInputStream.markSupported()
129 // Test 1: Check that markSupported() returns false for a filtered
131 assertFalse("Test 1: markSupported() incorrectly returned true " +
132 "for a FileInputStream.", is.markSupported());
134 // Test 2: Check that markSupported() returns true for a filtered
138 assertTrue("Test 2: markSupported() incorrectly returned false " +
139 "for a BufferedInputStream.", is.markSupported());
/libcore/ojluni/src/main/java/sun/net/www/
H A DMeteredStream.java199 public boolean markSupported() { method in class:MeteredStream
203 return super.markSupported();
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DByteBufferInputStream.java174 public boolean markSupported() { method in class:ByteBufferInputStream
H A DHandshakeInStream.java128 public boolean markSupported() { method in class:HandshakeInStream
/libcore/ojluni/src/main/java/javax/security/auth/x500/
H A DX500Principal.java245 if (is.markSupported())
250 if (is.markSupported()) {
/libcore/ojluni/src/main/java/javax/crypto/
H A DCipherInputStream.java319 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/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DByteArrayInputStreamTest.java107 * ByteArrayInputStream#markSupported()
110 assertTrue("markSupported returned incorrect value", is.markSupported());
H A DCharArrayReaderTest.java79 * java.io.CharArrayReader#markSupported()
83 assertTrue("markSupported returned false", cr.markSupported());
H A DFilterInputStreamTest.java151 * java.io.FilterInputStream#markSupported()
154 assertTrue("markSupported returned true", !is.markSupported());
H A DStringReaderTest.java70 * java.io.StringReader#markSupported()
73 // Test for method boolean java.io.StringReader.markSupported()
76 assertTrue("markSupported returned false", sr.markSupported());
/libcore/ojluni/src/main/java/java/util/zip/
H A DDeflaterInputStream.java279 public boolean markSupported() { method in class:DeflaterInputStream
H A DInflaterInputStream.java252 * <code>reset</code> methods. The <code>markSupported</code>
261 public boolean markSupported() { method in class:InflaterInputStream
/libcore/ojluni/src/main/java/sun/net/www/http/
H A DKeepAliveStream.java118 public boolean markSupported() { method in class:KeepAliveStream

Completed in 655 milliseconds

12