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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 38 class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
42 * Constructs an <code>ArrayIndexOutOfBoundsException</code> with no
45 public ArrayIndexOutOfBoundsException() {
50 * Constructs a new <code>ArrayIndexOutOfBoundsException</code>
55 public ArrayIndexOutOfBoundsException(int index) {
60 * Constructs an <code>ArrayIndexOutOfBoundsException</code> class
65 public ArrayIndexOutOfBoundsException(String s) {
73 public ArrayIndexOutOfBoundsException(int sourceLength, int index) {
81 public ArrayIndexOutOfBoundsException(int sourceLength, int offset,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ArrayIndexOutOfBoundsExceptionTest.java 25 * java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException(int)
28 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException(-1);
36 * java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException()
39 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException();
45 * java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException(java.lang.String
    [all...]
  /art/test/543-checker-dce-trycatch/src/
Main.java 53 throw new ArrayIndexOutOfBoundsException();
57 } catch (ArrayIndexOutOfBoundsException ex) {
  /external/conscrypt/src/main/java/org/conscrypt/util/
ArrayUtils.java 34 throw new ArrayIndexOutOfBoundsException("length=" + arrayLength + "; regionStart="
  /frameworks/base/graphics/java/android/graphics/
DashPathEffect.java 36 throw new ArrayIndexOutOfBoundsException();
EmbossMaskFilter.java 31 throw new ArrayIndexOutOfBoundsException();
  /frameworks/support/compat/java/android/support/v4/util/
CircularIntArray.java 105 * @throws ArrayIndexOutOfBoundsException if CircularIntArray is empty.
108 if (mHead == mTail) throw new ArrayIndexOutOfBoundsException();
117 * @throws ArrayIndexOutOfBoundsException if CircularIntArray is empty.
120 if (mHead == mTail) throw new ArrayIndexOutOfBoundsException();
138 * @throws ArrayIndexOutOfBoundsException if numOfElements is larger than
146 throw new ArrayIndexOutOfBoundsException();
155 * @throws ArrayIndexOutOfBoundsException if numOfElements is larger than
163 throw new ArrayIndexOutOfBoundsException();
171 * @throws {@link ArrayIndexOutOfBoundsException} if CircularIntArray is empty.
174 if (mHead == mTail) throw new ArrayIndexOutOfBoundsException();
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 26 import java.lang.ArrayIndexOutOfBoundsException;
69 } catch (ArrayIndexOutOfBoundsException e) {
70 fail("Unexpected ArrayIndexOutOfBoundsException was thrown");
80 } catch (ArrayIndexOutOfBoundsException e) {
81 fail("Unexpected ArrayIndexOutOfBoundsException was thrown");
89 fail("Should raise an ArrayIndexOutOfBoundsException "
91 } catch (ArrayIndexOutOfBoundsException e) {
101 fail("Should raise an ArrayIndexOutOfBoundsException "
103 } catch(ArrayIndexOutOfBoundsException e) {
120 fail("ArrayIndexOutOfBoundsException expected")
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 27 import java.lang.ArrayIndexOutOfBoundsException;
69 } catch(ArrayIndexOutOfBoundsException e) {
70 fail("Unexpected ArrayIndexOutOfBoundsException was thrown");
80 } catch(ArrayIndexOutOfBoundsException e) {
81 fail("Unexpected ArrayIndexOutOfBoundsException was thrown");
89 fail("Should raise an ArrayIndexOutOfBoundsException "
91 } catch(ArrayIndexOutOfBoundsException e) {
101 fail("Should raise an ArrayIndexOutOfBoundsException "
103 } catch(ArrayIndexOutOfBoundsException e) {
120 fail("ArrayIndexOutOfBoundsException expected")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
IntStack.java 125 catch (ArrayIndexOutOfBoundsException e)
143 catch (ArrayIndexOutOfBoundsException e)
161 catch (ArrayIndexOutOfBoundsException e)
  /art/test/537-checker-arraycopy/src/
Main.java 37 } catch (ArrayIndexOutOfBoundsException aiooe) {
47 } catch (ArrayIndexOutOfBoundsException aiooe) {
  /art/test/541-regression-inlined-deopt/src/
Main.java 31 if (!(ex.getCause() instanceof ArrayIndexOutOfBoundsException)) {
  /cts/tests/tests/text/src/android/text/cts/
AndroidCharacterTest.java 89 fail("Should throw ArrayIndexOutOfBoundsException.");
90 } catch (ArrayIndexOutOfBoundsException e) {
95 fail("Should throw ArrayIndexOutOfBoundsException.");
96 } catch (ArrayIndexOutOfBoundsException e) {
101 fail("Should throw ArrayIndexOutOfBoundsException.");
102 } catch (ArrayIndexOutOfBoundsException e) {
126 fail("Should throw ArrayIndexOutOfBoundsException.");
127 } catch (ArrayIndexOutOfBoundsException e) {
132 fail("Should throw ArrayIndexOutOfBoundsException.");
133 } catch (ArrayIndexOutOfBoundsException e)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
Stylesheet.java 236 * @throws ArrayIndexOutOfBoundsException
239 throws ArrayIndexOutOfBoundsException
243 throw new ArrayIndexOutOfBoundsException();
314 * @throws ArrayIndexOutOfBoundsException
317 throws ArrayIndexOutOfBoundsException
321 throw new ArrayIndexOutOfBoundsException();
474 * @throws ArrayIndexOutOfBoundsException
477 throws ArrayIndexOutOfBoundsException
481 throw new ArrayIndexOutOfBoundsException();
526 * @throws ArrayIndexOutOfBoundsException
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 89 } catch (ArrayIndexOutOfBoundsException ex) {
96 } catch (ArrayIndexOutOfBoundsException ex) {
103 } catch (ArrayIndexOutOfBoundsException ex) {
110 } catch (ArrayIndexOutOfBoundsException ex) {
117 } catch (ArrayIndexOutOfBoundsException ex) {
124 } catch (ArrayIndexOutOfBoundsException ex) {
  /libcore/ojluni/src/main/java/java/lang/reflect/
Array.java 164 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
168 public static Object get(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
213 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
218 public static boolean getBoolean(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
236 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
241 public static byte getByte(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
259 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
264 public static char getChar(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
282 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
287 public static short getShort(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
    [all...]
  /art/test/003-omnibus-opcodes/src/
Array.java 94 } catch (ArrayIndexOutOfBoundsException aioobe) {
100 } catch (ArrayIndexOutOfBoundsException aioobe) {
106 } catch (ArrayIndexOutOfBoundsException aioobe) {
112 } catch (ArrayIndexOutOfBoundsException aioobe) {
118 } catch (ArrayIndexOutOfBoundsException aioobe) {
124 } catch (ArrayIndexOutOfBoundsException aioobe) {
132 } catch (ArrayIndexOutOfBoundsException aioobe) {
149 } catch (ArrayIndexOutOfBoundsException aioobe) {
155 } catch (ArrayIndexOutOfBoundsException aioobe) {
161 } catch (ArrayIndexOutOfBoundsException aioobe)
    [all...]
  /art/test/582-checker-bce-length/src/
Main.java 71 } catch (ArrayIndexOutOfBoundsException e) {
82 } catch (ArrayIndexOutOfBoundsException e) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget/
Test_aget.java 46 * @title expected ArrayIndexOutOfBoundsException
49 loadAndRun("dot.junit.opcodes.aget.d.T_aget_1", ArrayIndexOutOfBoundsException.class,
61 * @title expected ArrayIndexOutOfBoundsException (negative index)
64 loadAndRun("dot.junit.opcodes.aget.d.T_aget_1", ArrayIndexOutOfBoundsException.class,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_boolean/
Test_aget_boolean.java 46 * @title expected ArrayIndexOutOfBoundsException
50 ArrayIndexOutOfBoundsException.class, new boolean[2], 2);
62 * @title expected ArrayIndexOutOfBoundsException (negative index)
66 ArrayIndexOutOfBoundsException.class, new boolean[2], -1);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_byte/
Test_aget_byte.java 47 * @title expected ArrayIndexOutOfBoundsException
51 ArrayIndexOutOfBoundsException.class, new byte[2], 2);
63 * @title expected ArrayIndexOutOfBoundsException (negative index)
67 ArrayIndexOutOfBoundsException.class, new byte[2], -1);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_char/
Test_aget_char.java 46 * @title expected ArrayIndexOutOfBoundsException
50 ArrayIndexOutOfBoundsException.class, new char[2], 2);
62 * @title expected ArrayIndexOutOfBoundsException (negative index)
66 ArrayIndexOutOfBoundsException.class, new char[2], -1);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_short/
Test_aget_short.java 46 * @title expected ArrayIndexOutOfBoundsException
50 ArrayIndexOutOfBoundsException.class, new short[2], 2);
62 * @title expected ArrayIndexOutOfBoundsException (negative index)
66 ArrayIndexOutOfBoundsException.class, new short[2], -1);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput/
Test_aput.java 47 * @title expected ArrayIndexOutOfBoundsException
50 loadAndRun("dot.junit.opcodes.aput.d.T_aput_1", ArrayIndexOutOfBoundsException.class,
63 * @title expected ArrayIndexOutOfBoundsException (negative index)
66 loadAndRun("dot.junit.opcodes.aput.d.T_aput_1", ArrayIndexOutOfBoundsException.class,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_boolean/
Test_aput_boolean.java 46 * @title expected ArrayIndexOutOfBoundsException
50 ArrayIndexOutOfBoundsException.class, new boolean[2], 2, true);
62 * @title expected ArrayIndexOutOfBoundsException (negative index)
66 ArrayIndexOutOfBoundsException.class, new boolean[2], -1, true);

Completed in 3702 milliseconds

1 2 3 4 5 6 7 8 91011>>