HomeSort by relevance Sort by last modified time
    Searched refs:IndexOutOfBoundsException (Results 1 - 25 of 332) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
IndexOutOfBoundsException.java 24 public class IndexOutOfBoundsException extends RuntimeException {
29 * Constructs a new {@code IndexOutOfBoundsException} that includes the
32 public IndexOutOfBoundsException() {
37 * Constructs a new {@code IndexOutOfBoundsException} with the current stack
43 public IndexOutOfBoundsException(String detailMessage) {
ArrayIndexOutOfBoundsException.java 24 public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
StringIndexOutOfBoundsException.java 24 public class StringIndexOutOfBoundsException extends IndexOutOfBoundsException {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
IndexOutOfBoundsExceptionTest.java 25 * @tests java.lang.IndexOutOfBoundsException#IndexOutOfBoundsException()
28 IndexOutOfBoundsException e = new IndexOutOfBoundsException();
35 * @tests java.lang.IndexOutOfBoundsException#IndexOutOfBoundsException(java.lang.String)
38 IndexOutOfBoundsException e = new IndexOutOfBoundsException("fixture");
StringBufferTest.java 36 fail("Assert 0: IndexOutOfBoundsException must be thrown");
37 } catch (IndexOutOfBoundsException e) {
56 fail("should throw IndexOutOfBoundsException");
57 } catch (IndexOutOfBoundsException e) {
226 } catch (IndexOutOfBoundsException e) {
234 } catch (IndexOutOfBoundsException e) {
284 } catch (IndexOutOfBoundsException e) {
292 } catch (IndexOutOfBoundsException e) {
300 } catch (IndexOutOfBoundsException e) {
308 } catch (IndexOutOfBoundsException e)
    [all...]
  /frameworks/base/core/java/android/database/
CursorIndexOutOfBoundsException.java 22 public class CursorIndexOutOfBoundsException extends IndexOutOfBoundsException {
  /external/apache-http/src/org/apache/http/message/
ParserCursor.java 54 throw new IndexOutOfBoundsException("Lower bound cannot be negative");
57 throw new IndexOutOfBoundsException("Lower bound cannot be greater then upper bound");
78 throw new IndexOutOfBoundsException();
81 throw new IndexOutOfBoundsException();
  /dalvik/dx/tests/080-dex-exception-tables/
Blort.java 29 } catch (IndexOutOfBoundsException ex) {
44 } catch (IndexOutOfBoundsException ex) {
66 } catch (IndexOutOfBoundsException ex) {
87 } catch (IndexOutOfBoundsException ex) {
108 } catch (IndexOutOfBoundsException ex) {
127 } catch (IndexOutOfBoundsException ex) {
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
WrappedByteBufferTest.java 46 notes = "Verifies IndexOutOfBoundsException, NullPointerException.",
55 } catch (IndexOutOfBoundsException e) {
61 } catch (IndexOutOfBoundsException e) {
67 } catch (IndexOutOfBoundsException e) {
73 } catch (IndexOutOfBoundsException e) {
79 } catch (IndexOutOfBoundsException e) {
85 } catch (IndexOutOfBoundsException e) {
WrappedCharBufferTest1.java 46 notes = "Verifies IndexOutOfBoundsException, NullPointerException.",
55 } catch (IndexOutOfBoundsException e) {
61 } catch (IndexOutOfBoundsException e) {
67 } catch (IndexOutOfBoundsException e) {
73 } catch (IndexOutOfBoundsException e) {
79 } catch (IndexOutOfBoundsException e) {
85 } catch (IndexOutOfBoundsException e) {
WrappedDoubleBufferTest.java 53 } catch (IndexOutOfBoundsException e) {
59 } catch (IndexOutOfBoundsException e) {
65 } catch (IndexOutOfBoundsException e) {
71 } catch (IndexOutOfBoundsException e) {
77 } catch (IndexOutOfBoundsException e) {
83 } catch (IndexOutOfBoundsException e) {
WrappedFloatBufferTest.java 53 } catch (IndexOutOfBoundsException e) {
59 } catch (IndexOutOfBoundsException e) {
65 } catch (IndexOutOfBoundsException e) {
71 } catch (IndexOutOfBoundsException e) {
77 } catch (IndexOutOfBoundsException e) {
83 } catch (IndexOutOfBoundsException e) {
WrappedIntBufferTest.java 53 } catch (IndexOutOfBoundsException e) {
59 } catch (IndexOutOfBoundsException e) {
65 } catch (IndexOutOfBoundsException e) {
71 } catch (IndexOutOfBoundsException e) {
77 } catch (IndexOutOfBoundsException e) {
83 } catch (IndexOutOfBoundsException e) {
WrappedLongBufferTest.java 53 } catch (IndexOutOfBoundsException e) {
59 } catch (IndexOutOfBoundsException e) {
65 } catch (IndexOutOfBoundsException e) {
71 } catch (IndexOutOfBoundsException e) {
77 } catch (IndexOutOfBoundsException e) {
83 } catch (IndexOutOfBoundsException e) {
WrappedShortBufferTest.java 53 } catch (IndexOutOfBoundsException e) {
59 } catch (IndexOutOfBoundsException e) {
65 } catch (IndexOutOfBoundsException e) {
71 } catch (IndexOutOfBoundsException e) {
77 } catch (IndexOutOfBoundsException e) {
83 } catch (IndexOutOfBoundsException e) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 26 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
31 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
48 public ConstructorTestHelper() throws IndexOutOfBoundsException { }
MethodTest.java 26 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
31 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
48 public void m1() throws IndexOutOfBoundsException { }
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringTest.java 47 fail("IndexOutOfBoundsException was not thrown.");
48 } catch(IndexOutOfBoundsException iobe) {
54 fail("IndexOutOfBoundsException was not thrown.");
55 } catch(IndexOutOfBoundsException iobe) {
61 fail("IndexOutOfBoundsException was not thrown.");
62 } catch(IndexOutOfBoundsException iobe) {
95 fail("Expected IndexOutOfBoundsException");
96 } catch (IndexOutOfBoundsException e) {
104 fail("IndexOutOfBoundsException was not thrown.");
105 } catch (IndexOutOfBoundsException e)
    [all...]
  /external/nist-sip/java/javax/sip/
DialogState.java 15 } catch (IndexOutOfBoundsException e) {
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 70 throw new IndexOutOfBoundsException();
125 throw new IndexOutOfBoundsException();
193 throw new IndexOutOfBoundsException();
230 throw new IndexOutOfBoundsException();
233 throw new IndexOutOfBoundsException();
236 throw new IndexOutOfBoundsException();
243 throw new IndexOutOfBoundsException();
246 throw new IndexOutOfBoundsException();
249 throw new IndexOutOfBoundsException();
  /libcore/luni/src/main/java/java/nio/
DoubleArrayBuffer.java 63 throw new IndexOutOfBoundsException();
72 throw new IndexOutOfBoundsException();
FloatArrayBuffer.java 63 throw new IndexOutOfBoundsException();
72 throw new IndexOutOfBoundsException();
IntArrayBuffer.java 63 throw new IndexOutOfBoundsException();
72 throw new IndexOutOfBoundsException();
LongArrayBuffer.java 63 throw new IndexOutOfBoundsException();
72 throw new IndexOutOfBoundsException();
ShortArrayBuffer.java 63 throw new IndexOutOfBoundsException();
72 throw new IndexOutOfBoundsException();

Completed in 274 milliseconds

1 2 3 4 5 6 7 8 91011>>