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

1 2 3 4 5 6 7 8

  /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() {
37 * Constructs a new {@code ArrayIndexOutOfBoundsException} with the current
44 public ArrayIndexOutOfBoundsException(int index) {
49 * Constructs a new {@code ArrayIndexOutOfBoundsException} with the current
55 public ArrayIndexOutOfBoundsException(String detailMessage) {
  /libcore/luni/src/test/java/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...]
  /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();
ColorMatrixColorFilter.java 40 throw new ArrayIndexOutOfBoundsException();
EmbossMaskFilter.java 31 throw new ArrayIndexOutOfBoundsException();
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect.java 39 throw new ArrayIndexOutOfBoundsException();
  /libcore/luni/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)
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 63 * @throws ArrayIndexOutOfBoundsException
67 throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
118 * @throws ArrayIndexOutOfBoundsException
122 throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
151 * @throws ArrayIndexOutOfBoundsException
155 throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
180 * @throws ArrayIndexOutOfBoundsException
184 throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
213 * @throws ArrayIndexOutOfBoundsException
217 throws IllegalArgumentException, ArrayIndexOutOfBoundsException {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 32 import java.lang.ArrayIndexOutOfBoundsException;
88 } catch(ArrayIndexOutOfBoundsException e) {
89 fail("Unexpected ArrayIndexOutOfBoundsException was thrown");
99 } catch(ArrayIndexOutOfBoundsException e) {
100 fail("Unexpected ArrayIndexOutOfBoundsException was thrown");
108 fail("Should raise an ArrayIndexOutOfBoundsException "
110 } catch(ArrayIndexOutOfBoundsException e) {
120 fail("Should raise an ArrayIndexOutOfBoundsException "
122 } catch(ArrayIndexOutOfBoundsException e) {
139 fail("ArrayIndexOutOfBoundsException expected")
    [all...]
  /libcore/luni/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/luni/src/main/java/com/ibm/icu4jni/common/
ErrorCode.java 39 return new ArrayIndexOutOfBoundsException(errorname);
41 return new ArrayIndexOutOfBoundsException(errorname);
  /libcore/luni/src/main/java/java/io/
InputStream.java 186 throw new ArrayIndexOutOfBoundsException("Offset out of bounds: " + offset);
189 throw new ArrayIndexOutOfBoundsException("Length out of bounds: " + length);
BufferedOutputStream.java 115 * @throws ArrayIndexOutOfBoundsException
134 throw new ArrayIndexOutOfBoundsException("Offset out of bounds: " + offset);
138 throw new ArrayIndexOutOfBoundsException("Length out of bounds: " + length);
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutTest.java 173 fail("should throw ArrayIndexOutOfBoundsException");
174 } catch (ArrayIndexOutOfBoundsException e) {
179 fail("should throw ArrayIndexOutOfBoundsException");
180 } catch (ArrayIndexOutOfBoundsException e) {
202 fail("should throw ArrayIndexOutOfBoundsException");
203 } catch (ArrayIndexOutOfBoundsException e) {
208 fail("should throw ArrayIndexOutOfBoundsException");
209 } catch (ArrayIndexOutOfBoundsException e) {
229 fail("should throw ArrayIndexOutOfBoundsException");
230 } catch (ArrayIndexOutOfBoundsException e)
    [all...]
AndroidCharacterTest.java 117 fail("Should throw ArrayIndexOutOfBoundsException.");
118 } catch (ArrayIndexOutOfBoundsException e) {
123 fail("Should throw ArrayIndexOutOfBoundsException.");
124 } catch (ArrayIndexOutOfBoundsException e) {
129 fail("Should throw ArrayIndexOutOfBoundsException.");
130 } catch (ArrayIndexOutOfBoundsException e) {
166 fail("Should throw ArrayIndexOutOfBoundsException.");
167 } catch (ArrayIndexOutOfBoundsException e) {
172 fail("Should throw ArrayIndexOutOfBoundsException.");
173 } catch (ArrayIndexOutOfBoundsException e)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
ReflectArrayTest.java 43 } catch (ArrayIndexOutOfBoundsException abe) {
90 } catch (ArrayIndexOutOfBoundsException abe) {
109 } catch (ArrayIndexOutOfBoundsException abe) {
130 } 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/main/java/org/xml/sax/helpers/
AttributeListImpl.java 226 } catch (ArrayIndexOutOfBoundsException e) {
249 } catch (ArrayIndexOutOfBoundsException e) {
270 } catch (ArrayIndexOutOfBoundsException e) {
  /dalvik/tests/045-reflect-array/src/
Main.java 37 catch (ArrayIndexOutOfBoundsException abe) {
97 catch (ArrayIndexOutOfBoundsException abe) {
116 catch (ArrayIndexOutOfBoundsException abe) {
143 catch (ArrayIndexOutOfBoundsException abe) {
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 94 throw new ArrayIndexOutOfBoundsException("invalid offset or length");
  /libcore/luni/src/main/java/java/util/zip/
Adler32.java 76 * @throws ArrayIndexOutOfBoundsException
86 throw new ArrayIndexOutOfBoundsException();
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
AbstractHttpOutputStream.java 37 throw new ArrayIndexOutOfBoundsException(

Completed in 337 milliseconds

1 2 3 4 5 6 7 8