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

/opengrok/src/org/opensolaris/opengrok/history/
H A DRCSget.java92 public int read(byte[] buffer, int pos, int len) throws IOException { argument
93 return stream.read(buffer, pos, len);
H A DBazaarHistoryParser.java185 * @param buffer The string to be parsed
187 * @throws IOException if we fail to parse the buffer
189 History parse(String buffer) throws IOException { argument
191 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DClearCaseHistoryParser.java130 * @param buffer The string to be parsed
132 * @throws IOException if we fail to parse the buffer
134 History parse(String buffer) throws IOException { argument
135 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DCVSHistoryParser.java184 * @param buffer The string to be parsed
186 * @throws IOException if we fail to parse the buffer
188 History parse(String buffer) throws IOException { argument
189 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DSSCMHistoryParser.java167 * @param buffer The string to be parsed
169 * @throws IOException if we fail to parse the buffer
171 History parse(String buffer) throws IOException { argument
172 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DGitHistoryParser.java176 * @param buffer The string to be parsed
178 * @throws IOException if we fail to parse the buffer
180 History parse(String buffer) throws IOException { argument
182 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
H A DSubversionHistoryParser.java196 * @param buffer The string to be parsed
198 * @throws IOException if we fail to parse the buffer
200 History parse(String buffer) throws IOException { argument
202 processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8")));
/opengrok/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
45 return (char) buffer[bufferPosition++];
51 if (tokenStart == 0) { // token won't fit in buffer
52 if (buffer == null) { // first time: alloc buffer
53 buffer = new byte[2048];
54 } else if (bufferLength == buffer.length) { // grow buffer
[all...]
H A DSimpleCharStream.java27 protected char[] buffer; field in class:SimpleCharStream
41 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
42 System.arraycopy(buffer, 0, newbuffer,
44 buffer = newbuffer;
58 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
59 buffer = newbuffer;
107 if ((i = inputStream.read(buffer, maxNextCharInd,
184 return buffer[bufpos];
190 char c = buffer[bufpos];
245 buffer
[all...]
/opengrok/src/org/opensolaris/opengrok/search/context/
H A DContext.java58 private char[] buffer; field in class:Context
86 buffer = new char[MAXFILEREAD];
242 charsRead = in.read(buffer);
251 if (buffer[i] == '\n') {
265 tokens.reInit(buffer, charsRead, out, urlPrefixE + pathE + "#", matchingTags, scopes);
/opengrok/.mvn/wrapper/
H A Dmaven-wrapper.jarorg/apache/maven/wrapper/BootstrapMainStarter.class BootstrapMainStarter.java package org.apache.maven.wrapper public ...
/opengrok/lib/
H A Dswing-layout-0.9.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jdesktop/ org/jdesktop/layout/ org/jdesktop/layout/AquaBaseline ...

Completed in 21 milliseconds