Searched defs:sourceLength (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DArrayIndexOutOfBoundsException.java62 public ArrayIndexOutOfBoundsException(int sourceLength, int index) { argument
63 super("length=" + sourceLength + "; index=" + index);
70 public ArrayIndexOutOfBoundsException(int sourceLength, int offset, argument
72 super("length=" + sourceLength + "; regionStart=" + offset
H A DStringIndexOutOfBoundsException.java70 public StringIndexOutOfBoundsException(int sourceLength, int index) { argument
71 super("length=" + sourceLength + "; index=" + index);
86 public StringIndexOutOfBoundsException(int sourceLength, int offset, argument
88 super("length=" + sourceLength + "; regionStart=" + offset

Completed in 85 milliseconds