Searched defs:current (Results 1 - 3 of 3) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/analysis/
H A DIteratorReader.java36 private StringReader current; field in class:IteratorReader
51 if (current != null) {
52 int ret = current.read(cbuf, off, len);
60 // No more data was found in the current element. Read data from
63 current = new StringReader(iterator.next() + '\n');
64 return current.read(cbuf, off, len);
73 current = null;
/opengrok/src/org/opensolaris/opengrok/util/
H A DGetopt.java43 private int current; field in class:Getopt
55 current = -1;
119 ++current;
120 if (current < options.size()) {
121 ret = options.get(current).option;
128 * Reset the current pointer so we may traverse all the options again..
131 current = -1;
135 * Get the argument to the current option
141 if (current < options.size()) {
142 ret = options.get(current)
[all...]
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 403 milliseconds