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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/
IndexOutOfBoundsException.java 38 class IndexOutOfBoundsException extends RuntimeException {
42 * Constructs an <code>IndexOutOfBoundsException</code> with no
45 public IndexOutOfBoundsException() {
50 * Constructs an <code>IndexOutOfBoundsException</code> with the
55 public IndexOutOfBoundsException(String s) {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
IndexOutOfBoundsExceptions.js 1 org.antlr.runtime.IndexOutOfBoundsException = function(m) {
2 org.antlr.runtime.IndexOutOfBoundsException.superclass.constructor.call(this, m);
5 org.antlr.lang.extend(org.antlr.runtime.IndexOutOfBoundsException, Error, {
6 name: "org.antlr.runtime.IndexOutOfBoundsException"
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
IndexOutOfBoundsExceptionTest.java 25 * java.lang.IndexOutOfBoundsException#IndexOutOfBoundsException()
28 IndexOutOfBoundsException e = new IndexOutOfBoundsException();
35 * java.lang.IndexOutOfBoundsException#IndexOutOfBoundsException(java.lang.String)
38 IndexOutOfBoundsException e = new IndexOutOfBoundsException("fixture");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
WrappedCharBufferTest1.java 45 } catch (IndexOutOfBoundsException e) {
51 } catch (IndexOutOfBoundsException e) {
57 } catch (IndexOutOfBoundsException e) {
63 } catch (IndexOutOfBoundsException e) {
69 } catch (IndexOutOfBoundsException e) {
75 } catch (IndexOutOfBoundsException e) {
WrappedByteBufferTest.java 44 } catch (IndexOutOfBoundsException e) {
50 } catch (IndexOutOfBoundsException e) {
56 } catch (IndexOutOfBoundsException e) {
62 } catch (IndexOutOfBoundsException e) {
68 } catch (IndexOutOfBoundsException e) {
74 } catch (IndexOutOfBoundsException e) {
WrappedDoubleBufferTest.java 43 } catch (IndexOutOfBoundsException e) {
49 } catch (IndexOutOfBoundsException e) {
55 } catch (IndexOutOfBoundsException e) {
61 } catch (IndexOutOfBoundsException e) {
67 } catch (IndexOutOfBoundsException e) {
73 } catch (IndexOutOfBoundsException e) {
WrappedFloatBufferTest.java 43 } catch (IndexOutOfBoundsException e) {
49 } catch (IndexOutOfBoundsException e) {
55 } catch (IndexOutOfBoundsException e) {
61 } catch (IndexOutOfBoundsException e) {
67 } catch (IndexOutOfBoundsException e) {
73 } catch (IndexOutOfBoundsException e) {
WrappedIntBufferTest.java 43 } catch (IndexOutOfBoundsException e) {
49 } catch (IndexOutOfBoundsException e) {
55 } catch (IndexOutOfBoundsException e) {
61 } catch (IndexOutOfBoundsException e) {
67 } catch (IndexOutOfBoundsException e) {
73 } catch (IndexOutOfBoundsException e) {
WrappedLongBufferTest.java 43 } catch (IndexOutOfBoundsException e) {
49 } catch (IndexOutOfBoundsException e) {
55 } catch (IndexOutOfBoundsException e) {
61 } catch (IndexOutOfBoundsException e) {
67 } catch (IndexOutOfBoundsException e) {
73 } catch (IndexOutOfBoundsException e) {
WrappedShortBufferTest.java 43 } catch (IndexOutOfBoundsException e) {
49 } catch (IndexOutOfBoundsException e) {
55 } catch (IndexOutOfBoundsException e) {
61 } catch (IndexOutOfBoundsException e) {
67 } catch (IndexOutOfBoundsException e) {
73 } catch (IndexOutOfBoundsException e) {
  /libcore/luni/src/test/java/libcore/java/io/
OldStringBufferInputStreamTest.java 32 fail("IndexOutOfBoundsException was not thrown");
33 } catch (IndexOutOfBoundsException e) {
38 fail("IndexOutOfBoundsException was not thrown");
39 } catch (IndexOutOfBoundsException e) {
44 fail("IndexOutOfBoundsException was not thrown");
45 } catch (IndexOutOfBoundsException e) {
OldStringWriterTest.java 31 fail("IndexOutOfBoundsException not thrown!");
32 } catch (IndexOutOfBoundsException e) {
38 fail("IndexOutOfBoundsException not thrown!");
39 } catch (IndexOutOfBoundsException e) {
OldCharArrayWriterTest.java 49 fail("Test 1: IndexOutOfBoundsException expected.");
50 } catch (IndexOutOfBoundsException e) {
55 fail("Test 2: IndexOutOfBoundsException expected.");
56 } catch (IndexOutOfBoundsException e) {
61 fail("Test 3: IndexOutOfBoundsException expected.");
62 } catch (IndexOutOfBoundsException e) {
100 fail("Test 1: IndexOutOfBoundsException expected.");
101 } catch (IndexOutOfBoundsException e) {
106 fail("Test 2: IndexOutOfBoundsException expected.");
107 } catch (IndexOutOfBoundsException e)
    [all...]
OldStringReaderTest.java 43 fail("IndexOutOfBoundsException was not thrown");
44 } catch (IndexOutOfBoundsException e) {
49 fail("IndexOutOfBoundsException was not thrown");
50 } catch (IndexOutOfBoundsException e) {
55 fail("IndexOutOfBoundsException was not thrown");
56 } catch (IndexOutOfBoundsException e) {
  /frameworks/base/core/java/android/database/
CursorIndexOutOfBoundsException.java 22 public class CursorIndexOutOfBoundsException extends IndexOutOfBoundsException {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListGetTester.java 39 } catch (IndexOutOfBoundsException expected) {
47 } catch (IndexOutOfBoundsException expected) {
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
ByteStream.java 85 * @throws IndexOutOfBoundsException
91 throw new IndexOutOfBoundsException();
99 * @throws IndexOutOfBoundsException
106 throw new IndexOutOfBoundsException();
113 * @throws IndexOutOfBoundsException
120 throw new IndexOutOfBoundsException();
130 * @throws IndexOutOfBoundsException
138 throw new IndexOutOfBoundsException();
148 * @throws IndexOutOfBoundsException
157 throw new IndexOutOfBoundsException();
    [all...]
  /external/apache-http/src/org/apache/http/message/
ParserCursor.java 59 throw new IndexOutOfBoundsException("Lower bound cannot be negative");
62 throw new IndexOutOfBoundsException("Lower bound cannot be greater then upper bound");
83 throw new IndexOutOfBoundsException();
86 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) {
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteBufferDataSource.java 85 throw new IndexOutOfBoundsException("size: " + size + ", source size: " + mSize);
96 throw new IndexOutOfBoundsException("size: " + size + ", source size: " + mSize);
106 throw new IndexOutOfBoundsException("offset: " + offset);
109 throw new IndexOutOfBoundsException("size: " + size);
112 throw new IndexOutOfBoundsException(
117 throw new IndexOutOfBoundsException(
121 throw new IndexOutOfBoundsException(
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
Matcher2Test.java 102 fail("IndexOutOfBoundsException expected");
103 } catch (IndexOutOfBoundsException e) {
108 fail("IndexOutOfBoundsException expected");
109 } catch (IndexOutOfBoundsException e) {
114 fail("IndexOutOfBoundsException expected");
115 } catch (IndexOutOfBoundsException e) {
120 fail("IndexOutOfBoundsException expected");
121 } catch (IndexOutOfBoundsException e) {
126 fail("IndexOutOfBoundsException expected");
127 } catch (IndexOutOfBoundsException e)
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
GetCharsTest.java 56 fail("should throw IndexOutOfBoundsException here");
57 } catch (IndexOutOfBoundsException e) {
62 fail("should throw IndexOutOfBoundsException here");
63 } catch (IndexOutOfBoundsException e) {
68 fail("should throw IndexOutOfBoundsException here");
69 } catch (IndexOutOfBoundsException e) {
74 fail("should throw IndexOutOfBoundsException here");
75 } catch (IndexOutOfBoundsException e) {
80 fail("should throw IndexOutOfBoundsException here");
81 } catch (IndexOutOfBoundsException e)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
AbstractSequentialList.java 84 * @throws IndexOutOfBoundsException {@inheritDoc}
90 throw new IndexOutOfBoundsException("Index: "+index);
111 * @throws IndexOutOfBoundsException {@inheritDoc}
120 throw new IndexOutOfBoundsException("Index: "+index);
142 * @throws IndexOutOfBoundsException {@inheritDoc}
148 throw new IndexOutOfBoundsException("Index: "+index);
167 * @throws IndexOutOfBoundsException {@inheritDoc}
176 throw new IndexOutOfBoundsException("Index: "+index);
210 * @throws IndexOutOfBoundsException {@inheritDoc}
223 throw new IndexOutOfBoundsException("Index: "+index)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Matcher2Test.java 100 fail("IndexOutOfBoundsException expected");
101 } catch (IndexOutOfBoundsException e) {
106 fail("IndexOutOfBoundsException expected");
107 } catch (IndexOutOfBoundsException e) {
112 fail("IndexOutOfBoundsException expected");
113 } catch (IndexOutOfBoundsException e) {
118 fail("IndexOutOfBoundsException expected");
119 } catch (IndexOutOfBoundsException e) {
124 fail("IndexOutOfBoundsException expected");
125 } catch (IndexOutOfBoundsException e)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringBufferTest.java 52 fail("IndexOutOfBoundsException is not thrown.");
53 } catch (IndexOutOfBoundsException e) {
59 fail("IndexOutOfBoundsException is not thrown.");
60 } catch (IndexOutOfBoundsException e) {
66 fail("IndexOutOfBoundsException is not thrown.");
67 } catch (IndexOutOfBoundsException e) {
73 fail("IndexOutOfBoundsException is not thrown.");
74 } catch (IndexOutOfBoundsException e) {
80 fail("IndexOutOfBoundsException is not thrown.");
81 } catch (IndexOutOfBoundsException e)
    [all...]

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 91011>>