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

/opengrok-sun/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-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DCharStream.java90 * Returns an array of characters that make up the suffix of length 'len' for
97 * return t.substring(t.length() - len, t.length()).toCharArray();
100 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-sun/src/org/opensolaris/opengrok/analysis/
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;
H A DTagFilter.java56 public final int read(char[] buf, int start, int len) throws java.io.IOException { argument
60 while ((c = this.read()) > -1 && n <= len && pos < buf.length) {
64 if (c == -1 && n == 0 && len != 0) {
/opengrok-sun/src/org/opensolaris/opengrok/analysis/document/
H A DTroffAnalyzer.java49 private int len; field in class:TroffAnalyzer
63 len = 0;
66 int rbytes = inReader.read(content, len, content.length - len);
68 if (rbytes == (content.length - len)) {
71 len += rbytes;
84 troffull.reInit(content, len);
88 troffull.reInit(content, len);
104 xref.reInit(content, len);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/plain/
H A DPlainAnalyzer.java50 protected int len; field in class:PlainAnalyzer
60 len = 0;
68 len = 0;
70 int rbytes = inReader.read(content, len, content.length - len);
72 if (rbytes == (content.length - len)) {
75 len += rbytes;
98 plainfull.reInit(content, len);
102 plainfull.reInit(content, len);
109 plainref.reInit(content, len);
[all...]
H A DXMLAnalyzer.java47 private int len; field in class:XMLAnalyzer
56 len = 0;
61 len = 0;
63 int rbytes = in.read(content, len, content.length - len);
65 if (rbytes == (content.length - len)) {
68 len += rbytes;
81 plainfull.reInit(content, len);
85 plainfull.reInit(content, len);
101 xref.reInit(content, len);
[all...]
/opengrok-sun/src/org/opensolaris/opengrok/web/
H A DEftarFile.java119 private FNode sbinSearch(long start, int len, long hash, RandomAccessFile f) throws Throwable { argument
121 int e = len;
H A DEftarFileReader.java86 private FNode binarySearch(long start, int len, long hash) throws IOException { argument
87 //System.err.printf(" Searching [%x] in %5d elem from %x\n", hash, len, start);
89 int e = len;
116 int len = f.read(tagString);
117 if (len == -1) {
120 return new String(tagString, 0, len);
201 int len = f.read(desc);
202 if (len == -1) {
205 return new String(desc, 0, len);
/opengrok-sun/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 67 milliseconds