Searched defs:unread (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DPushbackInputStream.java242 public void unread(byte[] buffer) throws IOException { method in class:PushbackInputStream
243 unread(buffer, 0, buffer.length);
272 public void unread(byte[] buffer, int offset, int length) throws IOException { method in class:PushbackInputStream
300 public void unread(int oneByte) throws IOException { method in class:PushbackInputStream
H A DPushbackReader.java259 public void unread(char[] buffer) throws IOException { method in class:PushbackReader
260 unread(buffer, 0, buffer.length);
293 public void unread(char[] buffer, int offset, int length) throws IOException { method in class:PushbackReader
301 unread(buffer[i]);
320 public void unread(int oneChar) throws IOException { method in class:PushbackReader

Completed in 566 milliseconds