Searched defs:num (Results 1 - 6 of 6) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/web/
H A DEftarFile.java105 public FNode(long hash, long offset, int childOffset, int num, int tagOffset) { argument
109 this.numChildren = num;
H A DEftarFileReader.java71 //System.err.println("offset " + offset + " num children " + numChildren + " tagOff " + tagOffset);
74 public FNode(long hash, long offset, int childOffset, int num, int tagOffset) { argument
78 this.numChildren = num;
136 return "H[" + hash + "] num = " + numChildren + " tag = " + tagString;
H A DUtil.java413 * @param num size to convert.
416 public static String readableSize(long num) { argument
417 float l = num;
480 * @param num linenumber to print
489 public static void readableLine(int num, Writer out, Annotation annotation, argument
493 readableLine(num, out, annotation, userPageLink, userPageSuffix, project, false);
496 public static void readableLine(int num, Writer out, Annotation annotation, argument
501 String snum = String.valueOf(num);
502 if (num > 1 && !skipNewline) {
506 out.write(num
[all...]
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchiveParser.java465 n = num();
477 n = num();
486 n[0] = num();
488 n[1] = num();
490 n[2] = num();
492 n[3] = num();
494 n[4] = num();
496 n[5] = num();
501 final public int num() throws ParseException { method in class:ArchiveParser
H A DVersion.java102 * @param num an array of Integers
104 public Version(Integer[] num) argument
106 numbers = new int[num.length];
107 for (int i = 0; i < num.length; i++)
109 numbers[i] = num[i].intValue();
115 * @param num an array of int
117 public Version(int[] num) argument
119 numbers = (int[]) num.clone();
/opengrok/src/org/opensolaris/opengrok/history/
H A DJDBCHistoryCache.java502 * possibly just a part of it (only the {@code num} first elements will be
506 * @param num the number of elements to use when reconstructing the path
509 private static String unsplitPath(String[] pathElts, int num) { argument
511 for (int i = 0; i < num; i++) {

Completed in 61 milliseconds