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

/libcore/luni/src/main/java/java/io/
H A DFilterReader.java135 * Indicates whether this reader is ready to be read without blocking. If
146 public boolean ready() throws IOException { method in class:FilterReader
148 return in.ready();
H A DInputStreamReader.java279 * Indicates whether this reader is ready to be read without blocking. If
292 public boolean ready() throws IOException { method in class:InputStreamReader
H A DReader.java156 * Indicates whether this reader is ready to be read without blocking.
168 public boolean ready() throws IOException { method in class:Reader
H A DStringReader.java164 * Indicates whether this reader is ready to be read without blocking. This
174 public boolean ready() throws IOException { method in class:StringReader
H A DCharArrayReader.java213 * Indicates whether this reader is ready to be read without blocking.
225 public boolean ready() throws IOException { method in class:CharArrayReader
H A DPipedReader.java298 * Indicates whether this reader is ready to be read without blocking.
312 public synchronized boolean ready() throws IOException { method in class:PipedReader
H A DPushbackReader.java206 * Indicates whether this reader is ready to be read without blocking.
219 public boolean ready() throws IOException { method in class:PushbackReader
224 return (buf.length - pos > 0 || in.ready());
H A DBufferedReader.java312 if (outstanding == 0 || (outstanding < length && !in.ready())) {
420 * Indicates whether this reader is ready to be read without blocking.
431 public boolean ready() throws IOException { method in class:BufferedReader
434 return ((end - pos) > 0) || in.ready();
/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleReader.java48 public boolean ready() throws IOException { method in class:Support_ASimpleReader
H A DSupport_StringReader.java172 * StringReader is ready to be read without blocking. If the result is
186 public boolean ready() throws IOException { method in class:Support_StringReader
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DObjectTest.java33 int ready = 0; field in class:ObjectTest
96 ready += 1;
114 ready = 0;
129 if (ready == threadCount) {
135 assertTrue("Not all launched threads are waiting. (ready = "
136 + ready + ")", ready == threadCount);
166 ready += 1;
185 ready = 0;
200 if (ready
[all...]
/libcore/luni/src/test/java/libcore/java/io/
H A DOldFilterReaderTest.java63 public boolean ready() throws IOException { method in class:OldFilterReaderTest.MockReader
148 fr.ready();
149 assertTrue("ready() has not been called.", called);
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldObjectTest.java35 int ready = 0; field in class:OldObjectTest
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DSocketTest.java66 public boolean ready = false; field in class:SocketTest.ServerThread
91 ready = true;
107 while (!ready) {

Completed in 252 milliseconds