Searched defs:buffer (Results 1 - 11 of 11) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DBazaarHistoryParser.java195 * @param buffer The string to be parsed
197 * @throws IOException if we fail to parse the buffer
199 History parse(String buffer) throws IOException { argument
201 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DClearCaseHistoryParser.java128 * @param buffer The string to be parsed
130 * @throws IOException if we fail to parse the buffer
132 History parse(String buffer) throws IOException { argument
133 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DRCSget.java108 public int read(byte[] buffer, int pos, int len) throws IOException { argument
109 return stream.read(buffer, pos, len);
H A DCVSHistoryParser.java152 * @param buffer The string to be parsed
154 * @throws IOException if we fail to parse the buffer
156 History parse(String buffer) throws IOException { argument
157 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DGitHistoryParser.java228 * @param buffer The string to be parsed
230 * @throws IOException if we fail to parse the buffer
232 History parse(String buffer) throws IOException { argument
234 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DSubversionHistoryParser.java201 * @param buffer The string to be parsed
203 * @throws IOException if we fail to parse the buffer
205 History parse(String buffer) throws IOException { argument
207 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DFastCharStream.java27 byte[] buffer = null; field in class:FastCharStream
32 int tokenStart = 0; // offset in buffer
33 int bufferStart = 0; // position in file of buffer
48 return (char) buffer[bufferPosition++];
54 if (tokenStart == 0) { // token won't fit in buffer
55 if (buffer == null) { // first time: alloc buffer
56 buffer = new byte[2048];
57 } else if (bufferLength == buffer.length) { // grow buffer
[all...]
H A DSimpleCharStream.java37 protected char[] buffer; field in class:SimpleCharStream
54 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
55 System.arraycopy(buffer, 0, newbuffer,
57 buffer = newbuffer;
71 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
72 buffer = newbuffer;
121 if ((i = inputStream.read(buffer, maxNextCharInd,
200 return buffer[bufpos];
206 char c = buffer[bufpos];
261 buffer
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DContext.java60 private char[] buffer; field in class:Context
88 buffer = new char[MAXFILEREAD];
228 charsRead = in.read(buffer);
237 if (buffer[i] == '\n') {
252 tokens.reInit(buffer, charsRead, out, urlPrefixE + pathE + '#',
/opengrok-jel/lib/
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...
H A Dswing-layout-0.9.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jdesktop/ org/jdesktop/layout/ org/jdesktop/layout/AquaBaseline ...

Completed in 20 milliseconds