Searched defs:read (Results 1 - 8 of 8) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/analysis/
H A DIteratorReader.java50 public int read(char[] cbuf, int off, int len) throws IOException { method in class:IteratorReader
52 int ret = current.read(cbuf, off, len);
54 // If some data was read, or if no data was requested,
55 // we're OK. Return the number of characters read.
64 return current.read(cbuf, off, len);
H A DExpandTabsReader.java81 public int read() throws IOException { method in class:ExpandTabsReader
89 int c = super.read();
110 public int read(char[] cbuf, int off, int len) throws IOException { method in class:ExpandTabsReader
112 int c = read();
129 int c = read();
/opengrok/src/org/opensolaris/opengrok/history/
H A DHistoryReader.java45 public int read(char[] cbuf, int off, int len) throws IOException { method in class:HistoryReader
49 return input.read(cbuf, off, len);
H A DRCSget.java92 public int read(byte[] buffer, int pos, int len) throws IOException { method in class:RCSget
93 return stream.read(buffer, pos, len);
97 public int read() throws IOException { method in class:RCSget
98 throw new IOException("use a BufferedInputStream. just read() is not supported!");
H A DSCCSHistoryParser.java116 while ((c = read()) > 01) {
180 private int read() throws java.io.IOException { method in class:SCCSHistoryParser
182 while((c = in.read()) != -1) {
185 d = in.read();
190 d = in.read();
197 d = in.read();
199 dt = in.read();
/opengrok/src/org/opensolaris/opengrok/configuration/messages/
H A DMessage.java267 public static Message read(File file) throws IOException { method in class:Message
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java199 * to use for each project. If {@code <= 0} tabs are read/write as is.
211 * to use for each project. If {@code <= 0} tabs are read/write as is.
748 * Get the contents of a file or empty string if the file cannot be read.
771 LOGGER.log(Level.WARNING, "failed to read header include file: {0}", e.getMessage());
803 * @return an empty string if it could not be read successfully, the
824 * @return an empty string if it could not be read successfully, the
945 public static Configuration read(File file) throws IOException { method in class:Configuration
/opengrok/lib/
H A Dbcel-6.0.jar ... static org.apache.bcel.classfile.AnnotationEntry read (java.io.DataInput, org.apache.bcel ...

Completed in 14 milliseconds