Lines Matching defs:result

542         int result = valueIfEmpty;
544 result = Math.max(result, a[i]);
546 return result;
551 T[] result = (T[]) Array.newInstance(a.getClass().getComponentType(), a.length + b.length);
552 System.arraycopy(a, 0, result, 0, a.length);
553 System.arraycopy(b, 0, result, a.length, b.length);
554 return result;
868 int result = 1;
873 result = 31 * result + lp.hashCode();
875 return result;
1132 int result = -1;
1138 result = max(result, span.min);
1139 result = max(result, span.max);
1141 return result == -1 ? UNDEFINED : result;
1206 Assoc<Interval, MutableInt> result = Assoc.of(Interval.class, MutableInt.class);
1210 result.put(span, new MutableInt());
1212 return result.pack();
1285 Arc[][] result = new Arc[N][];
1291 result[i] = new Arc[sizes[i]];
1297 result[i][sizes[i]++] = arc;
1300 return result;
1305 Arc[] result = new Arc[arcs.length];
1306 int cursor = result.length - 1;
1316 result[cursor--] = arc;
1336 return result;
1345 private void addComponentSizes(List<Arc> result, PackedMap<Interval, MutableInt> links) {
1348 include(result, key, links.values[i], false);
1421 StringBuilder result = new StringBuilder();
1427 result = result.append(", ");
1432 result.append((src < dst) ?
1437 return result.toString();
1961 int result = rowSpec.hashCode();
1962 result = 31 * result + columnSpec.hashCode();
1963 return result;
2073 int[] result = new int[size];
2083 result[i] = index;
2085 return result;
2094 K[] result = (K[]) Array.newInstance(componentType, max2(index, -1) + 1);
2098 result[index[i]] = a[i];
2100 return result;
2245 int result = min;
2246 result = 31 * result + max;
2247 return result;
2341 int result = span.hashCode();
2342 result = 31 * result + alignment.hashCode();
2343 return result;