Home | History | Annotate | Download | only in data

Lines Matching defs:group

56         final ArrayList<Path>[] group = new ArrayList[SIZE_LEVELS.length];
69 ArrayList<Path> list = group[i];
72 group[i] = list;
79 for (int i = 0; i < group.length; i++) {
80 if (group[i] != null) {
91 // Go through group in the reverse order, so the group with the largest
93 for (int i = group.length - 1; i >= 0; i--) {
94 if (group[i] == null) continue;
96 mClusters[k] = group[i];
100 } else if (i == group.length - 1) {