Home | History | Annotate | Download | only in util

Lines Matching defs:dimension

49     private final int dimension;
51 * Offset for each dimension.
63 * Index of last dimension.
74 private final int[] counter = new int[dimension];
92 for (int i = 0; i < dimension; i++) {
131 return /* Arrays.*/ copyOf(counter, dimension); // Java 1.5 does not support Arrays.copyOf()
135 * Get the current count in the selected dimension.
137 * @param dim Dimension index.
160 * @param size Counter sizes (number of slots in each dimension).
165 dimension = size.length;
166 this.size = /* Arrays.*/ copyOf(size, dimension); // Java 1.5 does not support Arrays.copyOf()
168 uniCounterOffset = new int[dimension];
170 last = dimension - 1;
174 for (int j = i + 1; j < dimension; j++) {
204 return dimension;
221 final int[] indices = new int[dimension];
255 * the range of the corresponding dimension, as defined in the
259 if (c.length != dimension) {
260 throw new DimensionMismatchException(c.length, dimension);
263 for (int i = 0; i < dimension; i++) {
283 * Get the number of multidimensional counter slots in each dimension.
285 * @return the sizes of the multidimensional counter in each dimension.
288 return /* Arrays.*/ copyOf(size, dimension); // Java 1.5 does not support Arrays.copyOf()
297 for (int i = 0; i < dimension; i++) {