Searched defs:len (Results 1 - 15 of 15) 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 { argument
49 return input.read(cbuf, off, len);
H A DRCSget.java108 public int read(byte[] buffer, int pos, int len) throws IOException { argument
109 return stream.read(buffer, pos, len);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DCharStream.java102 * Returns an array of characters that make up the suffix of length 'len' for
109 * return t.substring(t.length() - len, t.length()).toCharArray();
111 * @param len suffix length
114 char[] GetSuffix(int len); argument
H A DFastCharStream.java94 int len = bufferPosition - tokenStart;
95 StringBuilder sb = new StringBuilder(len);
96 for(int i = 0; i < len ; i++) {
104 public final char[] GetSuffix(int len) { argument
105 char[] value = new char[len];
106 System.arraycopy(buffer, bufferPosition - len, value, 0, len);
H A DSimpleCharStream.java358 public char[] GetSuffix(int len) argument
360 char[] ret = new char[len];
362 if ((bufpos + 1) >= len)
363 System.arraycopy(buffer, bufpos - len + 1, ret, 0, len);
366 System.arraycopy(buffer, bufsize - (len - bufpos - 1), ret, 0,
367 len - bufpos - 1);
368 System.arraycopy(buffer, 0, ret, len - bufpos - 1, bufpos + 1);
390 int len;
394 len
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DExpandTabsReader.java108 public int read(char[] cbuf, int off, int len) throws IOException { argument
109 for (int i = 0; i < len; i++) {
116 return len;
H A DTagFilter.java65 public final int read(char[] buf, int start, int len) throws IOException { argument
69 while((c = this.read()) > -1 && n <= len && pos < buf.length) {
73 if (c == -1 && n == 0 && len != 0) {
H A DXrefWriter.java105 public void write(byte[] b, int off, int len) throws IOException { argument
106 raf.write(b, off, len);
168 public void write(char[] cbuf, int off, int len) throws IOException { argument
169 out.write(cbuf, off, len);
170 count += len;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/document/
H A DTroffAnalyzer.java50 private int len; field in class:TroffAnalyzer
67 len = 0;
70 int rbytes = inReader.read(content, len, content.length - len);
72 if (rbytes == (content.length - len)) {
75 len += rbytes;
87 troffull.reInit(content, len);
99 xref.reInit(content, len);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/plain/
H A DPlainAnalyzer.java53 * read, i.e. the last {@code content.length - len} chars of content should
55 protected int len; field in class:PlainAnalyzer
69 len = 0;
82 len = 0;
84 int rbytes = inReader.read(content, len, content.length - len);
86 if (rbytes == (content.length - len)) {
89 len += rbytes;
114 plainfull.reInit(content, len);
117 plainref.reInit(content, len);
[all...]
H A DXMLAnalyzer.java49 private int len; field in class:XMLAnalyzer
60 len = 0;
67 len = 0;
69 int rbytes = in.read(content, len, content.length - len);
71 if(rbytes == (content.length - len)) {
74 len += rbytes;
86 plainfull.reInit(content, len);
97 xref.reInit(content, len);
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DEftarFileReader.java85 private FNode binarySearch(long start, int len, long hash) throws IOException { argument
86 //System.err.printf(" Searching [%x] in %5d elem from %x\n", hash, len, start);
88 int e = len;
115 int len = f.read(tagString);
116 if (len == -1) {
119 return new String(tagString, 0, len);
202 int len = f.read(desc);
203 if (len == -1) {
206 return new String(desc, 0, len);
H A DEftarFile.java120 private FNode sbinSearch(long start, int len, long hash, RandomAccessFile f) throws Throwable { argument
122 int e = len;
/opengrok-jel/lib/
H A Dservlet-api.jar ... java.io.IOException byte[] b int off int len
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 24 milliseconds