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

1 2

  /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());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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 94 IllegalArgumentException iae = new IllegalArgumentException(); //FIXME message local
95 iae.initCause(e);
96 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;
  /art/test/046-reflect/src/
Main.java 103 } catch (IllegalAccessException iae) {
112 } catch (IllegalAccessException iae) {
197 catch (IllegalArgumentException iae) {
209 catch (IllegalAccessException iae) {
222 catch (IllegalArgumentException iae) {
269 catch (IllegalArgumentException iae) {
276 catch (IllegalArgumentException iae) {
283 catch (IllegalArgumentException iae) {
291 catch (IllegalArgumentException iae) {
309 catch (IllegalArgumentException iae) {
    [all...]
  /dalvik/tests/046-reflect/src/
Main.java 89 } catch (IllegalAccessException iae) {
98 } catch (IllegalAccessException iae) {
183 catch (IllegalArgumentException iae) {
195 catch (IllegalAccessException iae) {
208 catch (IllegalArgumentException iae) {
255 catch (IllegalArgumentException iae) {
262 catch (IllegalArgumentException iae) {
269 catch (IllegalArgumentException iae) {
277 catch (IllegalArgumentException iae) {
295 catch (IllegalArgumentException iae) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 507 IllegalArgumentException iae = new IllegalArgumentException(fnfe); local
508 RuntimeException re = new RuntimeException(iae);
511 assertEquals(asList(ex, re, iae, fnfe), Throwables.getCausalChain(ex));
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java 196 catch (IllegalArgumentException iae) {
230 catch (IllegalArgumentException iae) {
240 catch (IllegalArgumentException iae) {
773 catch (IllegalArgumentException iae) {
775 iae.printStackTrace();
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
  /external/zxing/core/
core.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
osgi-4.0.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /prebuilts/tools/common/freemarker/
freemarker-2.3.19.jar 
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 

Completed in 552 milliseconds

1 2