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

1 2 3 4 5 6 7 8 910

  /libcore/luni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 24 public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
29 * Constructs a new {@code ArrayIndexOutOfBoundsException} that includes the
32 public ArrayIndexOutOfBoundsException() {
36 * Constructs a new {@code ArrayIndexOutOfBoundsException} with the current
43 public ArrayIndexOutOfBoundsException(int index) {
48 * Constructs a new {@code ArrayIndexOutOfBoundsException} with the current
54 public ArrayIndexOutOfBoundsException(String detailMessage) {
62 public ArrayIndexOutOfBoundsException(int sourceLength, int index) {
70 public ArrayIndexOutOfBoundsException(int sourceLength, int offset,
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ArrayIndexOutOfBoundsExceptionTest.java 25 * @tests java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException(int)
28 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException(-1);
36 * @tests java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException()
39 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException();
45 * @tests java.lang.ArrayIndexOutOfBoundsException#ArrayIndexOutOfBoundsException(java.lang.String
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ArrayIndexOutOfBoundsExceptionTest.java 27 } catch (ArrayIndexOutOfBoundsException ex) {
37 } catch (ArrayIndexOutOfBoundsException ex) {
47 } catch (ArrayIndexOutOfBoundsException ex) {
57 } catch (ArrayIndexOutOfBoundsException ex) {
67 } catch (ArrayIndexOutOfBoundsException ex) {
77 } catch (ArrayIndexOutOfBoundsException ex) {
  /dalvik/tests/003-omnibus-opcodes/src/
Array.java 81 } catch (ArrayIndexOutOfBoundsException aioobe) {
87 } catch (ArrayIndexOutOfBoundsException aioobe) {
93 } catch (ArrayIndexOutOfBoundsException aioobe) {
99 } catch (ArrayIndexOutOfBoundsException aioobe) {
105 } catch (ArrayIndexOutOfBoundsException aioobe) {
111 } catch (ArrayIndexOutOfBoundsException aioobe) {
119 } catch (ArrayIndexOutOfBoundsException aioobe) {
136 } catch (ArrayIndexOutOfBoundsException aioobe) {
142 } catch (ArrayIndexOutOfBoundsException aioobe) {
148 } catch (ArrayIndexOutOfBoundsException aioobe)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
DashPathEffect.java 36 throw new ArrayIndexOutOfBoundsException();
EmbossMaskFilter.java 31 throw new ArrayIndexOutOfBoundsException();
ColorMatrixColorFilter.java 42 throw new ArrayIndexOutOfBoundsException();
  /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)
ObjectStack.java 128 catch (ArrayIndexOutOfBoundsException e)
146 catch (ArrayIndexOutOfBoundsException e)
164 catch (ArrayIndexOutOfBoundsException e)
  /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...]
StaticLayoutTest.java 140 fail("should throw ArrayIndexOutOfBoundsException");
141 } catch (ArrayIndexOutOfBoundsException e) {
146 fail("should throw ArrayIndexOutOfBoundsException");
147 } catch (ArrayIndexOutOfBoundsException e) {
162 fail("should throw ArrayIndexOutOfBoundsException");
163 } catch (ArrayIndexOutOfBoundsException e) {
168 fail("should throw ArrayIndexOutOfBoundsException");
169 } catch (ArrayIndexOutOfBoundsException e) {
182 fail("should throw ArrayIndexOutOfBoundsException");
183 } 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...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ArrayTest.java 50 } catch (ArrayIndexOutOfBoundsException e) {
83 } catch (ArrayIndexOutOfBoundsException e) {
116 } catch (ArrayIndexOutOfBoundsException e) {
149 } catch (ArrayIndexOutOfBoundsException e) {
183 } catch (ArrayIndexOutOfBoundsException e) {
216 } catch (ArrayIndexOutOfBoundsException e) {
249 } catch (ArrayIndexOutOfBoundsException e) {
302 } catch (ArrayIndexOutOfBoundsException e) {
335 } catch (ArrayIndexOutOfBoundsException e) {
395 } catch (ArrayIndexOutOfBoundsException e)
    [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/luni/src/main/java/java/lang/reflect/
Array.java 67 * @throws ArrayIndexOutOfBoundsException
70 public static Object get(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
111 * @throws ArrayIndexOutOfBoundsException
114 public static boolean getBoolean(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
128 * @throws ArrayIndexOutOfBoundsException
131 public static byte getByte(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
145 * @throws ArrayIndexOutOfBoundsException
148 public static char getChar(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
163 * @throws ArrayIndexOutOfBoundsException
166 public static double getDouble(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...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidArrayTest.java 40 } catch (ArrayIndexOutOfBoundsException abe) {
85 } catch (ArrayIndexOutOfBoundsException abe) {
103 } catch (ArrayIndexOutOfBoundsException abe) {
124 } catch (ArrayIndexOutOfBoundsException abe) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CharacterDataImpl.java 73 } catch (ArrayIndexOutOfBoundsException ex) {
82 } catch (ArrayIndexOutOfBoundsException ex) {
94 } catch (ArrayIndexOutOfBoundsException ex) {
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ArrayTest.java 53 } catch (ArrayIndexOutOfBoundsException e) {
84 } catch (ArrayIndexOutOfBoundsException e) {
120 } catch (ArrayIndexOutOfBoundsException e) {
166 } catch (ArrayIndexOutOfBoundsException e) {
212 } catch (ArrayIndexOutOfBoundsException e) {
259 } catch (ArrayIndexOutOfBoundsException e) {
305 } catch (ArrayIndexOutOfBoundsException e) {
351 } catch (ArrayIndexOutOfBoundsException e) {
417 } catch (ArrayIndexOutOfBoundsException e) {
463 } catch (ArrayIndexOutOfBoundsException e)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedOutputStreamTest.java 235 fail("should throw ArrayIndexOutOfBoundsException");
236 } catch (ArrayIndexOutOfBoundsException e) {
242 fail("should throw ArrayIndexOutOfBoundsException");
243 } catch (ArrayIndexOutOfBoundsException e) {
249 fail("should throw ArrayIndexOutOfBoundsException");
250 } catch (ArrayIndexOutOfBoundsException e) {
256 fail("should throw ArrayIndexOutOfBoundsException");
257 } catch (ArrayIndexOutOfBoundsException e) {
263 fail("should throw ArrayIndexOutOfBoundsException");
264 } catch (ArrayIndexOutOfBoundsException e)
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeInput.java 51 } catch (ArrayIndexOutOfBoundsException ex) {
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
ShortArrayCodeInput.java 51 } catch (ArrayIndexOutOfBoundsException ex) {
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 94 throw new ArrayIndexOutOfBoundsException("invalid offset or length");

Completed in 596 milliseconds

1 2 3 4 5 6 7 8 910