HomeSort by relevance Sort by last modified time
    Searched defs:iae (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /libcore/harmony-tests/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationFormatErrorTest.java 41 IllegalArgumentException iae = new IllegalArgumentException(); local
42 AnnotationFormatError e = new AnnotationFormatError(iae);
43 assertSame(iae, e.getCause());
51 IllegalArgumentException iae = new IllegalArgumentException(); local
52 AnnotationFormatError e = new AnnotationFormatError("some message", iae);
54 assertSame(iae, e.getCause());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ServiceConfigurationErrorTest.java 48 IllegalArgumentException iae = new IllegalArgumentException( local
49 "info in the IAE");
51 iae);
53 assertEquals(iae, e.getCause());
54 assertEquals("info in the IAE", e.getCause().getMessage());
65 new IllegalArgumentException("info in the IAE")));
75 new IllegalArgumentException("info in the IAE"));
  /libcore/luni/src/test/java/libcore/java/lang/
OldThrowableTest.java 82 IllegalArgumentException iae = new IllegalArgumentException(); local
84 thr.initCause(iae);
85 assertEquals("getCause returns incorrect cause.", iae, thr.getCause());
93 thr.initCause(iae);
101 thr.initCause(iae);
  /art/test/055-enum-performance/src/
Main.java 22 IllegalArgumentException iae = (IllegalArgumentException) expected.getCause(); local
23 if (!iae.getMessage().equals("class java.lang.String is not an enum type")) {
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 98 IllegalArgumentException iae = new IllegalArgumentException(); //FIXME message local
99 iae.initCause(e);
100 throw iae;
  /art/test/045-reflect-array/src/
Main.java 88 } catch (IllegalArgumentException iae) {}
92 } catch (IllegalArgumentException iae) {}
104 } catch (IllegalArgumentException iae) {
105 iae.printStackTrace();
110 } catch (IllegalArgumentException iae) {}
118 } catch (IllegalArgumentException iae) {
119 iae.printStackTrace();
144 } catch (IllegalArgumentException iae) {}
191 } catch (IllegalArgumentException iae) {}
  /libcore/luni/src/main/java/javax/security/auth/x500/
X500Principal.java 108 IllegalArgumentException iae = new IllegalArgumentException("Incorrect input encoding"); local
109 iae.initCause(e);
110 throw iae;
147 IllegalArgumentException iae = new IllegalArgumentException("Incorrect input name:" + name); local
148 iae.initCause(e);
149 throw iae;
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 497 IllegalArgumentException iae = new IllegalArgumentException(fnfe); local
498 RuntimeException re = new RuntimeException(iae);
501 assertEquals(asList(ex, re, iae, fnfe), Throwables.getCausalChain(ex));
  /art/test/046-reflect/src/
Main.java 105 } catch (IllegalAccessException iae) {
114 } catch (IllegalAccessException iae) {
199 catch (IllegalArgumentException iae) {
211 catch (IllegalAccessException iae) {
224 catch (IllegalArgumentException iae) {
285 catch (IllegalArgumentException iae) {
292 catch (IllegalArgumentException iae) {
299 catch (IllegalArgumentException iae) {
307 catch (IllegalArgumentException iae) {
325 catch (IllegalArgumentException iae) {
    [all...]
  /prebuilts/tools/common/m2/repository/xml-resolver/xml-resolver/1.2/
xml-resolver-1.2.jar 
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DiagBigDecimal.java 3219 java.lang.IllegalArgumentException iae = null; local
    [all...]