Searched refs:outOfBounds (Results 1 – 5 of 5) sorted by relevance
/libcore/ojluni/src/main/java/jdk/internal/util/ |
D | Preconditions.java | 54 private static RuntimeException outOfBounds( in outOfBounds() method in Preconditions 68 return outOfBounds(oobe, "checkIndex", index, length); in outOfBoundsCheckIndex() 74 return outOfBounds(oobe, "checkFromToIndex", fromIndex, toIndex, length); in outOfBoundsCheckFromToIndex() 80 return outOfBounds(oobe, "checkFromIndexSize", fromIndex, size, length); in outOfBoundsCheckFromIndexSize()
|
/libcore/ojluni/src/main/native/ |
D | io_util.c | 68 outOfBounds(JNIEnv *env, jint off, jint len, jbyteArray array) { in outOfBounds() function 90 if (outOfBounds(env, off, len, bytes)) { in readBytes() 166 if (outOfBounds(env, off, len, bytes)) { in writeBytes()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 383 static String outOfBounds(int index, int size) { in outOfBounds() method in CopyOnWriteArrayList 449 throw new IndexOutOfBoundsException(outOfBounds(index, len)); in add() 808 throw new IndexOutOfBoundsException(outOfBounds(index, len)); in addAll() 1035 throw new IndexOutOfBoundsException(outOfBounds(index, len)); in listIterator() 1209 throw new IndexOutOfBoundsException(outOfBounds(index, size)); in rangeCheck() 1242 (outOfBounds(index, size)); in add() 1289 (outOfBounds(index, size)); in listIterator()
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 119 static java.lang.String outOfBounds(int index, int size) { in outOfBounds() method in CopyOnWriteArrayList
|
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectInputStream.java | 3239 boolean outOfBounds = false; in readUTFSpan() 3284 outOfBounds = true; in readUTFSpan() 3286 if (outOfBounds || (pos - start) > utflen) { in readUTFSpan()
|