Searched refs:oobef (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/jdk/internal/util/ |
D | Preconditions.java | 55 BiFunction<String, List<Integer>, ? extends RuntimeException> oobef, in outOfBounds() argument 59 RuntimeException e = oobef == null in outOfBounds() 60 ? null : oobef.apply(checkKind, largs); in outOfBounds() 245 BiFunction<String, List<Integer>, X> oobef) { 247 throw outOfBoundsCheckIndex(oobef, index, length); 292 BiFunction<String, List<Integer>, X> oobef) { 294 throw outOfBoundsCheckFromToIndex(oobef, fromIndex, toIndex, length); 340 BiFunction<String, List<Integer>, X> oobef) { 342 throw outOfBoundsCheckFromIndexSize(oobef, fromIndex, size, length);
|