HomeSort by relevance Sort by last modified time
    Searched defs:StringIndexOutOfBoundsException (Results 1 - 18 of 18) sorted by null

  /libcore/luni/src/main/java/java/lang/
StringIndexOutOfBoundsException.java 24 public class StringIndexOutOfBoundsException extends IndexOutOfBoundsException {
29 * Constructs a new {@code StringIndexOutOfBoundsException} that includes
32 public StringIndexOutOfBoundsException() {
36 * Constructs a new {@code StringIndexOutOfBoundsException} with the current
43 public StringIndexOutOfBoundsException(int index) {
48 * Constructs a new {@code StringIndexOutOfBoundsException} with the current
54 public StringIndexOutOfBoundsException(String detailMessage) {
62 public StringIndexOutOfBoundsException(String s, int index) {
70 public StringIndexOutOfBoundsException(int sourceLength, int index) {
78 public StringIndexOutOfBoundsException(String s, int offset, int count)
    [all...]
AbstractStringBuilder.java 211 private StringIndexOutOfBoundsException indexAndLength(int index) {
212 throw new StringIndexOutOfBoundsException(count, index);
215 private StringIndexOutOfBoundsException startEndAndLength(int start, int end) {
216 throw new StringIndexOutOfBoundsException(count, start, end - start);
334 throw new StringIndexOutOfBoundsException("this.length=" + count
561 throw new StringIndexOutOfBoundsException("length < 0: " + length);
587 * @throws StringIndexOutOfBoundsException
612 * @throws StringIndexOutOfBoundsException
String.java 578 private StringIndexOutOfBoundsException indexAndLength(int index) {
579 throw new StringIndexOutOfBoundsException(this, index);
582 private StringIndexOutOfBoundsException startEndAndLength(int start, int end) {
583 throw new StringIndexOutOfBoundsException(this, start, end - start);
586 private StringIndexOutOfBoundsException failedBoundsCheck(int arrayLength, int offset, int count) {
587 throw new StringIndexOutOfBoundsException(arrayLength, offset, count);
    [all...]
  /libcore/luni/src/main/java/java/io/
Writer.java 162 throw new StringIndexOutOfBoundsException(str, offset, count);
CharArrayWriter.java 197 * @throws StringIndexOutOfBoundsException
208 throw new StringIndexOutOfBoundsException(str, offset, count);
BufferedWriter.java 271 throw new StringIndexOutOfBoundsException(str, offset, count);
OutputStreamWriter.java 314 throw new StringIndexOutOfBoundsException(str, offset, count);
320 throw new StringIndexOutOfBoundsException(str, offset, count);
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 90 throw new StringIndexOutOfBoundsException(spec, start, end - start);
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 54 if (srclen < 0) throw new StringIndexOutOfBoundsException();
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 1086 milliseconds