Searched refs:arrayLength (Results 1 - 3 of 3) sorted by last modified time

/libcore/luni/src/main/java/java/lang/
H A DString.java586 private StringIndexOutOfBoundsException failedBoundsCheck(int arrayLength, int offset, int count) { argument
587 throw new StringIndexOutOfBoundsException(arrayLength, offset, count);
/libcore/luni/src/main/java/java/util/
H A DArrays.java1725 * {@code arrayLength}.
1729 public static void checkOffsetAndCount(int arrayLength, int offset, int count) { argument
1730 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
1731 throw new ArrayIndexOutOfBoundsException(arrayLength, offset,
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp915 size_t arrayLength = env->GetArrayLength(javaStructs); local
916 UniquePtr<struct pollfd[]> fds(new struct pollfd[arrayLength]);
917 memset(fds.get(), 0, sizeof(struct pollfd) * arrayLength);
919 for (size_t i = 0; i < arrayLength; ++i) {

Completed in 206 milliseconds