/libcore/luni/src/main/java/javax/xml/transform/stream/ |
D | StreamSource.java | 24 import java.io.Reader; 103 public StreamSource(Reader reader) { in StreamSource() 118 public StreamSource(Reader reader, String systemId) { in StreamSource() 177 public void setReader(Reader reader) { in setReader() 187 public Reader getReader() { in getReader() 271 private Reader reader;
|
/libcore/luni/src/main/java/org/xml/sax/ |
D | InputSource.java | 10 import java.io.Reader; 136 public InputSource (Reader characterStream) in InputSource() 307 public void setCharacterStream (Reader characterStream) in setCharacterStream() 319 public Reader getCharacterStream () in getCharacterStream() 339 private Reader characterStream;
|
/libcore/ojluni/src/main/java/java/sql/ |
D | PreparedStatement.java | 31 import java.io.Reader; 525 java.io.Reader reader, in setCharacterStream() 809 void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException; in setNCharacterStream() 845 void setClob(int parameterIndex, Reader reader, long length) in setClob() 896 void setNClob(int parameterIndex, Reader reader, long length) in setNClob() 1044 java.io.Reader reader, in setCharacterStream() 1122 java.io.Reader reader) throws SQLException; in setCharacterStream() 1146 void setNCharacterStream(int parameterIndex, Reader value) throws SQLException; in setNCharacterStream() 1170 void setClob(int parameterIndex, Reader reader) in setClob() 1223 void setNClob(int parameterIndex, Reader reader) in setNClob()
|
D | CallableStatement.java | 31 import java.io.Reader; 1223 java.io.Reader reader, in setCharacterStream() 1854 void setNCharacterStream(String parameterName, Reader value, long length) in setNCharacterStream() 1895 void setClob(String parameterName, Reader reader, long length) in setClob() 1949 void setNClob(String parameterName, Reader reader, long length) in setNClob() 2107 java.io.Reader getNCharacterStream(int parameterIndex) throws SQLException; in getNCharacterStream() 2127 java.io.Reader getNCharacterStream(String parameterName) throws SQLException; in getNCharacterStream() 2141 java.io.Reader getCharacterStream(int parameterIndex) throws SQLException; in getCharacterStream() 2158 java.io.Reader getCharacterStream(String parameterName) throws SQLException; in getCharacterStream() 2266 java.io.Reader reader, in setCharacterStream() [all …]
|
D | SQLXML.java | 30 import java.io.Reader; 269 Reader getCharacterStream() throws SQLException; in getCharacterStream()
|
/libcore/ojluni/src/main/java/javax/sql/ |
D | RowSet.java | 983 Reader reader, in setCharacterStream() 1010 java.io.Reader reader, in setCharacterStream() 1139 java.io.Reader reader) throws SQLException; in setCharacterStream() 1166 java.io.Reader reader) throws SQLException; in setCharacterStream() 1191 void setNCharacterStream(int parameterIndex, Reader value) throws SQLException; in setNCharacterStream() 1575 void setClob(int parameterIndex, Reader reader, long length) in setClob() 1599 void setClob(int parameterIndex, Reader reader) in setClob() 1623 void setClob(String parameterName, Reader reader, long length) in setClob() 1661 void setClob(String parameterName, Reader reader) in setClob() 2002 void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException; in setNCharacterStream() [all …]
|
/libcore/ojluni/annotations/hiddenapi/sun/security/x509/ |
D | AVA.java | 39 AVA(java.io.Reader in) throws java.io.IOException { in AVA() 43 AVA(java.io.Reader in, java.util.Map<java.lang.String, java.lang.String> keywordMap) in AVA() 48 AVA(java.io.Reader in, int format) throws java.io.IOException { in AVA() 52 AVA(java.io.Reader in, int format, java.util.Map<java.lang.String, java.lang.String> keywordMap) in AVA() 80 private static sun.security.util.DerValue parseHexString(java.io.Reader in, int format) in parseHexString() 86 java.io.Reader in, java.lang.StringBuilder temp) throws java.io.IOException { in parseQuotedString() 91 java.io.Reader in, int c, int format, java.lang.StringBuilder temp) in parseString() 96 private static java.lang.Byte getEmbeddedHexPair(int c1, java.io.Reader in) in getEmbeddedHexPair() 110 private static int readChar(java.io.Reader in, java.lang.String errMsg) in readChar() 115 private static boolean trailingSpace(java.io.Reader in) throws java.io.IOException { in trailingSpace()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldAndroidStringReaderTest.java | 20 import java.io.Reader; 41 public static String read(Reader a) throws IOException { in read() 52 public static String read(Reader a, int x) throws IOException { in read() 61 public static String skipRead(Reader a) throws IOException { in skipRead() 73 public static String markRead(Reader a, int x, int y) throws IOException { in markRead()
|
D | OldAndroidCharArrayReaderTest.java | 21 import java.io.Reader; 43 public static String read(Reader a) throws IOException { in read() 54 public static String read(Reader a, int x) throws IOException { in read() 63 public static String skipRead(Reader a) throws IOException { in skipRead() 75 public static String markRead(Reader a, int x, int y) throws IOException { in markRead()
|
D | OldAndroidBufferedReaderTest.java | 21 import java.io.Reader; 66 public static String read(Reader a) throws IOException { in read() 77 public static String read(Reader a, int x) throws IOException { in read() 86 public static String skipRead(Reader a) throws IOException { in skipRead() 98 public static String markRead(Reader a, int x, int y) throws IOException { in markRead()
|
D | OldAndroidLineNumberReaderTest.java | 21 import java.io.Reader; 80 public static String read(Reader a) throws IOException { in read() 91 public static String read(Reader a, int x) throws IOException { in read() 100 public static String skipRead(Reader a) throws IOException { in skipRead() 112 public static String markRead(Reader a, int x, int y) throws IOException { in markRead()
|
D | OldAndroidPushbackReaderTest.java | 21 import java.io.Reader; 58 public static String read(Reader a) throws IOException { in read() 69 public static String read(Reader a, int x) throws IOException { in read() 78 public static String skipRead(Reader a) throws IOException { in skipRead()
|
/libcore/ojluni/src/main/java/java/io/ |
D | FilterReader.java | 41 public abstract class FilterReader extends Reader { 46 protected Reader in; 54 protected FilterReader(Reader in) { in FilterReader()
|
D | Reader.java | 51 public abstract class Reader implements Readable, Closeable { class 66 protected Reader() { in Reader() method in Reader 76 protected Reader(Object lock) { in Reader() method in Reader
|
D | LineNumberReader.java | 71 public LineNumberReader(Reader in) { in LineNumberReader() 85 public LineNumberReader(Reader in, int sz) { in LineNumberReader()
|
/libcore/ojluni/annotations/hiddenapi/java/io/ |
D | Console.java | 46 public java.io.Reader reader() { in reader() 113 private java.io.Reader reader; 118 class LineReader extends java.io.Reader { 120 LineReader(java.io.Reader in) { in LineReader() 138 private java.io.Reader in;
|
/libcore/luni/src/main/java/org/w3c/dom/ls/ |
D | LSInput.java | 65 public java.io.Reader getCharacterStream(); in getCharacterStream() 73 public void setCharacterStream(java.io.Reader characterStream); in setCharacterStream()
|
/libcore/support/src/test/java/tests/support/ |
D | Streams.java | 23 import java.io.Reader; 49 public static String streamToString(Reader fileReader) throws IOException { in streamToString()
|
D | ThrowingReader.java | 22 import java.io.Reader; 33 public ThrowingReader(Reader in, int throwAt) { in ThrowingReader()
|
D | Support_ASimpleReader.java | 4 import java.io.Reader; 12 public class Support_ASimpleReader extends Reader {
|
D | Support_StringReader.java | 21 import java.io.Reader; 23 public class Support_StringReader extends Reader {
|
/libcore/ojluni/src/main/java/java/util/ |
D | PropertyResourceBundle.java | 43 import java.io.Reader; 157 public PropertyResourceBundle (Reader reader) throws IOException { in PropertyResourceBundle()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | ConsoleTest.java | 28 import java.io.Reader; 80 Reader reader1 = console.reader(); in test_reader() 82 Reader reader2 = console.reader(); in test_reader()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | ScannerParseLargeFileBenchmarkTest.java | 19 import java.io.Reader; 42 private static class FakeLargeFile extends Reader {
|
/libcore/tools/upstream/src/main/java/libcore/ |
D | Util.java | 26 import java.io.Reader; 57 public static Lines readLines(Reader reader) throws IOException { in readLines() 69 try (Reader reader = new FileReader(path.toFile())) { in readLines()
|