Searched defs:readChar (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java419 char readChar() throws IOException; method in interface:DataInput
H A DDataInputStream.java345 * See the general contract of the <code>readChar</code>
361 public final char readChar() throws IOException { method in class:DataInputStream
H A DRandomAccessFile.java779 public final char readChar() throws IOException { method in class:RandomAccessFile
H A DObjectInputStream.java938 public char readChar() throws IOException { method in class:ObjectInputStream
939 return bin.readChar();
2785 public char readChar() throws IOException { method in class:ObjectInputStream.BlockDataInputStream
2790 return din.readChar();
2915 v[off++] = din.readChar();
/libcore/dex/src/main/java/com/android/dex/
H A DEncodedValueReader.java146 public char readChar() { method in class:EncodedValueReader
230 readChar();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DDataInputStreamTest.java99 * java.io.DataInputStream#readChar()
105 assertEquals("Incorrect char read", 't', dis.readChar());
474 public char readChar() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
/libcore/ojluni/src/main/java/sun/security/x509/
H A DAVA.java186 c = readChar(in, "Incorrect AVA format");
324 int c = readChar(in, "Quoted string did not end in quote");
330 c = readChar(in, "Quoted string did not end in quote");
364 c = readChar(in, "Quoted string did not end in quote");
410 c = readChar(in, "Invalid trailing backslash");
534 int c2 = readChar(in, "unexpected EOF - " +
573 private static int readChar(Reader in, String errMsg) throws IOException { method in class:AVA

Completed in 232 milliseconds