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

/opengrok/src/org/opensolaris/opengrok/analysis/
H A DIteratorReader.java50 public int read(char[] cbuf, int off, int len) throws IOException { argument
52 int ret = current.read(cbuf, off, len);
53 if (ret > 0 || len == 0) {
64 return current.read(cbuf, off, len);
H A DExpandTabsReader.java110 public int read(char[] cbuf, int off, int len) throws IOException { argument
111 for (int i = 0; i < len; i++) {
118 return len;
/opengrok/src/org/opensolaris/opengrok/history/
H A DHistoryReader.java45 public int read(char[] cbuf, int off, int len) throws IOException { argument
49 return input.read(cbuf, off, len);
H A DRCSget.java92 public int read(byte[] buffer, int pos, int len) throws IOException { argument
93 return stream.read(buffer, pos, len);
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DCharStream.java76 * Returns an array of characters that make up the suffix of length 'len' for
83 * return t.substring(t.length() - len, t.length()).toCharArray();
86 char[] GetSuffix(int len); argument
H A DFastCharStream.java86 int len = bufferPosition - tokenStart;
87 StringBuilder sb = new StringBuilder(len);
88 for(int i = 0; i < len ; i++) {
94 public final char[] GetSuffix(int len) { argument
95 char[] value = new char[len];
96 System.arraycopy(buffer, bufferPosition - len, value, 0, len);
H A DSimpleCharStream.java330 public char[] GetSuffix(int len) argument
332 char[] ret = new char[len];
334 if ((bufpos + 1) >= len)
335 System.arraycopy(buffer, bufpos - len + 1, ret, 0, len);
338 System.arraycopy(buffer, bufsize - (len - bufpos - 1), ret, 0,
339 len - bufpos - 1);
340 System.arraycopy(buffer, 0, ret, len - bufpos - 1, bufpos + 1);
359 int len;
363 len
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DEftarFile.java120 private FNode sbinSearch(long start, int len, long hash, RandomAccessFile f) throws Throwable { argument
122 int e = len;
H A DEftarFileReader.java89 private FNode binarySearch(long start, int len, long hash) throws IOException { argument
90 //System.err.printf(" Searching [%x] in %5d elem from %x\n", hash, len, start);
92 int e = len;
119 int len = f.read(tagString);
120 if (len == -1) {
123 return new String(tagString, 0, len);
204 int len = f.read(desc);
205 if (len == -1) {
208 return new String(desc, 0, len);
/opengrok/.mvn/wrapper/
H A Dmaven-wrapper.jar ... File file java.io.File[] arr$ int len$ int i$ java.io.File mavenHome ...
/opengrok/lib/
H A Dbcel-6.0.jar ... apache.bcel.classfile.ElementValuePair[] arr$ int len$ int i$ StringBuilder result org.apache. ...

Completed in 41 milliseconds