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

/opengrok-jel/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.java108 public int read(byte[] buffer, int pos, int len) throws IOException { method in class:RCSget
109 return stream.read(buffer, pos, len);
116 public int read() throws IOException { method in class:RCSget
117 throw new IOException("use a BufferedInputStream. just read() is not supported!");
H A DSCCSHistoryParser.java112 while ((c = read()) > 01) {
177 private int read() throws java.io.IOException { method in class:SCCSHistoryParser
179 while((c = in.read()) != -1) {
182 d = in.read();
187 d = in.read();
194 d = in.read();
196 dt = in.read();
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DExpandTabsReader.java79 public int read() throws IOException { method in class:ExpandTabsReader
87 int c = super.read();
108 public int read(char[] cbuf, int off, int len) throws IOException { method in class:ExpandTabsReader
110 int c = read();
127 int c = read();
H A DTagFilter.java46 * @param in where to read data to filter.
62 * @see #read()
65 public final int read(char[] buf, int start, int len) throws IOException { method in class:TagFilter
69 while((c = this.read()) > -1 && n <= len && pos < buf.length) {
87 public final int read() throws IOException { method in class:TagFilter
89 while ((c = in.read()) != -1) {
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java159 * to use for each project. If {@code <= 0} tabs are read/write as is.
171 * to use for each project. If {@code <= 0} tabs are read/write as is.
741 * If set to {@code true}, at most 1 MiB of a file gets read into a buffer
743 * usual, i.e. the file content gets read on demand when tokenizing and the
1049 * Get the contents of a file or empty string if the file cannot be read.
1073 logger.warning("failed to read include file '" + file.getName()
1094 * @return an empty string if it could not be read successfully, the
1114 * @return an empty string if it could not be read successfully, the
1133 * @return an empty string if it could not be read successfully, the
1314 * @param file the file to read
1319 public static Configuration read(File file) throws IOException { method in class:Configuration
[all...]
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 18 milliseconds