Home
last modified time | relevance | path

Searched refs:outOfBounds (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/jdk/internal/util/
DPreconditions.java56 private static RuntimeException outOfBounds( in outOfBounds() method in Preconditions
70 return outOfBounds(oobe, "checkIndex", index, length); in outOfBoundsCheckIndex()
76 return outOfBounds(oobe, "checkFromToIndex", fromIndex, toIndex, length); in outOfBoundsCheckFromToIndex()
82 return outOfBounds(oobe, "checkFromIndexSize", fromIndex, size, length); in outOfBoundsCheckFromIndexSize()
88 return outOfBounds(oobe, "checkIndex", index, length); in outOfBoundsCheckIndex()
94 return outOfBounds(oobe, "checkFromToIndex", fromIndex, toIndex, length); in outOfBoundsCheckFromToIndex()
100 return outOfBounds(oobe, "checkFromIndexSize", fromIndex, size, length); in outOfBoundsCheckFromIndexSize()
/libcore/ojluni/src/main/native/
Dio_util.c68 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/
DCopyOnWriteArrayList.java397 static String outOfBounds(int index, int size) { in outOfBounds() method in CopyOnWriteArrayList
488 throw new IndexOutOfBoundsException(outOfBounds(index, len)); in add()
868 throw new IndexOutOfBoundsException(outOfBounds(index, len)); in addAll()
1141 throw new IndexOutOfBoundsException(outOfBounds(index, len)); in listIterator()
1302 throw new IndexOutOfBoundsException(outOfBounds(index, size)); in rangeCheck()
1308 throw new IndexOutOfBoundsException(outOfBounds(index, size)); in rangeCheckForAdd()
/libcore/ojluni/src/main/java/java/util/
DImmutableCollections.java301 throw outOfBounds(index); in listIterator()
339 IndexOutOfBoundsException outOfBounds(int index) { in outOfBounds() method in AbstractImmutableList
493 throw outOfBounds(index); in rangeCheck()
592 throw outOfBounds(index); in get()
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DCopyOnWriteArrayList.java119 static java.lang.String outOfBounds(int index, int size) { in outOfBounds() method in CopyOnWriteArrayList
/libcore/ojluni/src/main/java/java/io/
DObjectInputStream.java3461 boolean outOfBounds = false; in readUTFSpan()
3506 outOfBounds = true; in readUTFSpan()
3508 if (outOfBounds || (pos - start) > utflen) { in readUTFSpan()