HomeSort by relevance Sort by last modified time
    Searched defs:ready (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/guava/src/com/google/common/io/
MultiReader.java 77 @Override public boolean ready() throws IOException { method in class:MultiReader
78 return (current != null) && current.ready();
  /libcore/luni/src/main/java/java/io/
FilterReader.java 144 * Indicates whether this reader is ready to be read without blocking. If
155 public boolean ready() throws IOException { method in class:FilterReader
157 return in.ready();
Reader.java 169 * Indicates whether this reader is ready to be read without blocking.
181 public boolean ready() throws IOException { method in class:Reader
PushbackReader.java 217 * Indicates whether this reader is ready to be read without blocking.
230 public boolean ready() throws IOException { method in class:PushbackReader
235 return (buf.length - pos > 0 || in.ready());
StringReader.java 174 * Indicates whether this reader is ready to be read without blocking. This
184 public boolean ready() throws IOException { method in class:StringReader
BufferedReader.java 297 if (outstanding == 0 || (outstanding < length && !in.ready())) {
427 * Indicates whether this reader is ready to be read without blocking.
438 public boolean ready() throws IOException { method in class:BufferedReader
441 return ((end - pos) > 0) || in.ready();
InputStreamReader.java 290 * Indicates whether this reader is ready to be read without blocking. If
303 public boolean ready() throws IOException { method in class:InputStreamReader
PipedReader.java 305 * Indicates whether this reader is ready to be read without blocking.
319 public synchronized boolean ready() throws IOException { method in class:PipedReader
  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 48 public boolean ready() throws IOException { method in class:Support_ASimpleReader
Support_StringReader.java 172 * StringReader is ready to be read without blocking. If the result is
186 public boolean ready() throws IOException { method in class:Support_StringReader
  /packages/apps/Camera/src/com/android/camera/panorama/
MosaicRenderer.java 78 public static native void ready(); method in class:MosaicRenderer
MosaicRendererSurfaceViewRenderer.java 69 MosaicRenderer.ready();
  /external/webkit/Source/WebCore/platform/graphics/android/
GaneshRenderer.cpp 93 bool ready = tileQueue->readyForUpdate(); local
94 if (!ready) {
95 XLOG("!ready");
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
ProxyReader.java 89 * Invokes the delegate's <code>ready()</code> method.
90 * @return true if the stream is ready to be read
93 public boolean ready() throws IOException { method in class:ProxyReader
94 return in.ready();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringReader.java 172 * StringReader is ready to be read without blocking. If the result is
186 public boolean ready() throws IOException { method in class:Support_StringReader
  /external/bluetooth/glib/glib/
gpoll.c 101 * directly if you need to block until a file descriptor is ready, but
142 DWORD ready; local
154 ready = MsgWaitForMultipleObjectsEx (nhandles, handles, timeout,
157 if (ready == WAIT_FAILED)
168 ready = WAIT_FAILED;
172 ready = WAIT_TIMEOUT;
183 ready = WaitForMultipleObjectsEx (nhandles, handles, FALSE, timeout, TRUE);
184 if (ready == WAIT_FAILED)
194 ready,
195 (ready == WAIT_FAILED ? " (WAIT_FAILED)"
382 int ready; local
    [all...]
  /frameworks/media/libvideoeditor/lvpp/
VideoEditorPlayer.h 40 virtual bool ready() const { return mTrack != NULL; } function in class:android::VideoEditorPlayer::VeAudioOutput
  /libcore/luni/src/test/java/libcore/java/io/
OldReaderTest.java 90 simple.ready();
OldFilterReaderTest.java 63 public boolean ready() throws IOException { method in class:OldFilterReaderTest.MockReader
148 fr.ready();
149 assertTrue("ready() has not been called.", called);
OldCharArrayReaderTest.java 37 assertTrue("Failed to create reader", cr.ready());
39 fail("Exception determining ready state : " + e.getMessage());
73 assertTrue("Test 5: Failed to create reader", cr.ready());
192 // Test for method boolean java.io.CharArrayReader.ready()
196 assertTrue("ready returned false", cr.ready());
198 assertTrue("ready returned true", !cr.ready());
201 cr.ready();
210 cr.ready();
    [all...]
  /dalvik/vm/
Debugger.h 82 bool ready; member in struct:DebugInvokeReq
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
StringReaderTest.java 105 * @tests java.io.StringReader#ready()
108 // Test for method boolean java.io.StringReader.ready()
110 assertTrue("Steam not ready", sr.ready());
114 sr.ready();
  /external/chromium/chrome/browser/instant/
instant_loader.h 82 // Returns true if the preview TabContents is ready to be shown.
83 bool ready() const { return ready_; } function in class:InstantLoader
126 // delegate the preview is ready to be shown.
172 // Is the preview_contents ready to be shown?
  /external/chromium/third_party/libjingle/source/talk/base/
thread.h 98 bool *ready; member in struct:talk_base::_SendMessage
  /external/qemu/hw/
goldfish_tty.c 39 uint32_t ready; member in struct:tty_state
52 qemu_put_byte( f, s->ready );
66 s->ready = qemu_get_byte(f);
104 if(s->ready) {
107 s->ready = 0;
112 if(!s->ready) {
115 s->ready = 1;
158 if(s->data_count == 0 && s->ready)
193 if(s->data_count > 0 && s->ready)

Completed in 685 milliseconds

1 2 3