Searched refs:read (Results 1 - 25 of 37) sorted by relevance

12

/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) {
H A DPathTokenizer.java54 c = input.read();
65 c = input.read();
H A DTextAnalyzer.java58 int br = in.read(head, 0, 3);
H A DXrefInputStream.java61 * Create a new InputStream from the given crossfile. The header gets read
65 * @param file file to read.
68 * @throws IOException on read error or if the given file is not a crossfile
92 * Get the header of the crossfile beeing read.
129 * Dump all data not yet read to the given output stream.
140 while ((len = in.read(buf)) >= 0) {
146 * Dump all data not yet read to the given writer. The constructor for this
150 * IOException, if any data have been read from this stream already.
153 * @throws IOException on read error
171 while ((len = isr.read(bu
[all...]
H A DXrefHeader.java149 * @param in from where to read the header.
161 int i = in.read(header, count, header.length - count);
/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 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();
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 DGitRepository.java176 dis.read(hex_uuid, 0, hex_uuid.length);
336 while ((len = in.read(buffer)) != -1) {
348 while ((len = in.read(buffer)) != -1) {
H A DBazaarRepository.java122 while ((len = in.read(buffer)) != -1) {
H A DCVSRepository.java208 while ((len = in.read(buffer)) != -1) {
292 * @param input data to read
H A DMonotoneRepository.java93 while ((len = in.read(buffer)) != -1) {
/opengrok-jel/src/org/opensolaris/opengrok/analysis/archive/
H A DBZip2Analyzer.java64 if (in.read() != 'B') {
67 if (in.read() != 'Z') {
H A DZipAnalyzerFactory.java78 int len = in.read(buf);
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DSCCSgetTest.java111 while ((nr = in.read(buffer, 0, buffer.length)) != -1) {
142 while ((len = in.read(buffer)) != -1) {
/opengrok-jel/test/org/opensolaris/opengrok/analysis/
H A DExpandTabsReaderTest.java88 while ((c = r.read()) != -1) {
H A DTextAnalyzerTest.java120 int br = r.read(buf);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DFastCharStream.java30 int bufferPosition = 0; // next char to read
38 * @param in where to read from */
72 input.read(buffer, newPosition, buffer.length-newPosition);
74 throw new IOException("read past eof");
/opengrok-jel/src/org/opensolaris/opengrok/analysis/document/
H A DTroffAnalyzer.java70 int rbytes = inReader.read(content, len, content.length - len);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/plain/
H A DXMLAnalyzer.java69 int rbytes = in.read(content, len, content.length - len);
H A DPlainAnalyzer.java53 * read, i.e. the last {@code content.length - len} chars of content should
84 int rbytes = inReader.read(content, len, content.length - len);
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java148 * @param file the file to read
152 setConfig(Configuration.read(file));
246 while ((len = in.read(buf)) != -1) {
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DEftarFileReader.java115 int len = f.read(tagString);
202 int len = f.read(desc);
/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java108 while ((nr = in.read(array)) > 0) {

Completed in 24 milliseconds

12