Searched refs:chars (Results 1 - 5 of 5) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DGetopt.java69 char[] chars = argv[ii].toCharArray();
70 if (chars.length > 0 && chars[0] == '-') {
77 for (int jj = 1; jj < chars.length; ++jj) {
78 int idx = opts.indexOf(chars[jj]);
84 option.option = chars[jj];
89 if ((jj + 1) < chars.length) {
99 throw new ParseException("Option " + chars[jj] + " requires an argument", ii);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DXrefHeader.java51 private long chars; field in class:XrefHeader
84 * @param chars number of characters in the [compressed] data section.
86 public XrefHeader(Genre genre, boolean compressed, int lines, long chars) { argument
94 this.chars = chars;
109 bb.putLong(chars);
136 this.chars = bb.getLong();
186 return chars;
196 this.chars = size < 0 ? -1L : size;
246 + ", Characters=" + (chars <
[all...]
H A DAnalyzerGuru.java502 char[] chars = new char[signature.length > 8 ? 8 : signature.length];
503 for (int i = 0; i < chars.length; i++) {
504 chars[i] = (char) (0xFF & signature[i]);
507 String sig = new String(chars);
/opengrok-jel/test/org/opensolaris/opengrok/search/context/
H A DContextTest.java241 char[] chars = new char[Context.MAXFILEREAD];
242 Arrays.fill(chars, 'a');
244 System.arraycopy(substring, 0, chars,
246 Reader in = new CharArrayReader(chars);
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 15 milliseconds