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

1 2 3 4

  /libcore/luni/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());
  /dalvik/tests/075-verification-error/src/
Main.java 92 } catch (IllegalAccessError iae) {
94 if (VERBOSE) System.out.println("--- " + iae);
100 } catch (IllegalAccessError iae) {
102 if (VERBOSE) System.out.println("--- " + iae);
108 } catch (IllegalAccessError iae) {
110 if (VERBOSE) System.out.println("--- " + iae);
116 } catch (IllegalAccessError iae) {
118 if (VERBOSE) System.out.println("--- " + iae);
125 } catch (IllegalAccessError iae) {
127 if (VERBOSE) System.out.println("--- " + iae);
    [all...]
  /dalvik/tests/024-illegal-access/src/
Main.java 25 } catch (IllegalAccessError iae) {
36 } catch (IllegalAccessError iae) {
  /dalvik/tests/068-classloader/src/
Main.java 86 } catch (IllegalAccessException iae) {
88 //System.out.println("+++ " + iae);
106 System.out.println("Got expected CNFE/IAE #2");
108 System.err.println("Got unexpected CNFE/IAE #2");
126 System.out.println("Got expected CNFE/IAE #3");
128 System.err.println("Got unexpected CNFE/IAE #3");
157 } catch (IllegalAccessException iae) {
158 System.err.println("newInstance failed: " + iae);
204 } catch (IllegalAccessException iae) {
205 System.err.println("newInstance failed: " + iae);
    [all...]
FancyLoader.java 100 } catch (IllegalAccessException iae) {
101 throw new ClassNotFoundException("newInstance failed", iae);
122 } catch (IllegalAccessException iae) {
123 throw new ClassNotFoundException("loadClass failed", iae);
  /dalvik/tests/044-proxy/src/
Clash.java 36 } catch (IllegalArgumentException iae) {
45 } catch (IllegalArgumentException iae) {
Clash2.java 35 } catch (IllegalArgumentException iae) {
Clash3.java 39 } catch (IllegalArgumentException iae) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/opc_new/
Test_opc_new.java 61 } catch (IllegalAccessError iae) {
77 } catch (NoClassDefFoundError iae) {
114 } catch (Error iae) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/check_cast/
Test_check_cast.java 63 } catch (ClassCastException iae) {
134 } catch (IllegalAccessError iae) {
149 } catch (NoClassDefFoundError iae) {
  /system/media/opensles/libopensles/
android_Effect.h 79 extern SLresult android_genericFx_createEffect(IAndroidEffect* iae, SLInterfaceID pUuid,
82 extern SLresult android_genericFx_releaseEffect(IAndroidEffect* iae, SLInterfaceID pUuid);
84 extern SLresult android_genericFx_setEnabled(IAndroidEffect* iae, SLInterfaceID pUuid,
87 extern SLresult android_genericFx_isEnabled(IAndroidEffect* iae, SLInterfaceID pUuid,
90 extern SLresult android_genericFx_sendCommand(IAndroidEffect* iae, SLInterfaceID pUuid,
94 extern bool android_genericFx_hasEffect(IAndroidEffect* iae, SLInterfaceID pUuid);
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSocketTest.java 101 } catch (IllegalArgumentException iae) {
143 } catch (IllegalArgumentException iae) {
152 } catch (IllegalArgumentException iae) {
164 } catch (IllegalArgumentException iae) {
175 } catch (IllegalArgumentException iae) {
188 } catch (IllegalArgumentException iae) {
197 } catch (IllegalArgumentException iae) {
209 } catch (IllegalArgumentException iae) {
220 } catch (IllegalArgumentException iae) {
259 } catch (IllegalArgumentException iae) {
    [all...]
SSLEngineResultHandshakeStatusTest.java 86 } catch (IllegalArgumentException iae) {
97 } catch (IllegalArgumentException iae) {
X509TrustManagerTest.java 69 } catch (IllegalArgumentException iae) {
79 } catch (IllegalArgumentException iae) {
89 } catch (IllegalArgumentException iae) {
98 } catch (IllegalArgumentException iae) {
162 } catch (IllegalArgumentException iae) {
172 } catch (IllegalArgumentException iae) {
182 } catch (IllegalArgumentException iae) {
191 } catch (IllegalArgumentException iae) {
SSLEngineResultStatusTest.java 93 } catch (IllegalArgumentException iae) {
104 } catch (IllegalArgumentException iae) {
  /dalvik/tests/046-reflect/src/
Main.java 134 catch (IllegalArgumentException iae) {
146 catch (IllegalAccessException iae) {
159 catch (IllegalArgumentException iae) {
206 catch (IllegalArgumentException iae) {
213 catch (IllegalArgumentException iae) {
220 catch (IllegalArgumentException iae) {
228 catch (IllegalArgumentException iae) {
246 catch (IllegalArgumentException iae) {
276 } catch (IllegalAccessException iae) {
315 } catch (IllegalAccessException iae) {
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/checkcast/
Test_checkcast.java 66 } catch (ClassCastException iae) {
96 } catch (NoClassDefFoundError iae) {
  /dalvik/tests/086-null-super/src/
Main.java 96 } catch (IllegalAccessException iae) {
97 throw new TestFailed(iae);
  /dalvik/tests/087-gc-after-link/src/
Main.java 96 } catch (IllegalAccessException iae) {
97 throw new TestFailed(iae);
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorTemplateElem.java 73 catch (IllegalAccessException iae)
75 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, iae);//"Failed creating ElemTemplateElement instance!", 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"); local
148 iae.initCause(e);
149 throw iae;
  /libcore/luni/src/test/java/tests/api/java/util/
SimpleTimeZoneTest.java 556 } catch(IllegalArgumentException iae) {
563 } catch(IllegalArgumentException iae) {
570 } catch(IllegalArgumentException iae) {
603 } catch(IllegalArgumentException iae) {
610 } catch(IllegalArgumentException iae) {
617 } catch(IllegalArgumentException iae) {
624 } catch(IllegalArgumentException iae) {
663 } catch(IllegalArgumentException iae) {
670 } catch(IllegalArgumentException iae) {
677 } catch(IllegalArgumentException iae) {
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserTest.java 374 } catch(java.lang.IllegalArgumentException iae) {
380 } catch(java.lang.IllegalArgumentException iae) {
425 } catch(java.lang.IllegalArgumentException iae) {
435 } catch(java.lang.IllegalArgumentException iae) {
485 } catch(java.lang.IllegalArgumentException iae) {
492 } catch(java.lang.IllegalArgumentException iae) {
547 } catch(java.lang.IllegalArgumentException iae) {
558 } catch(java.lang.IllegalArgumentException iae) {
573 } catch(java.lang.IllegalArgumentException iae) {
587 } catch(java.lang.IllegalArgumentException iae) {
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/invokevirtual/
Test_invokevirtual.java 146 } catch (AbstractMethodError iae) {
159 } catch (NoSuchMethodError iae) {
177 } catch (IllegalAccessError iae) {
195 } catch (IllegalAccessError iae) {
212 } catch (NoSuchMethodError iae) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/invokestatic/
Test_invokestatic.java 145 } catch (IllegalAccessError iae) {
194 } catch (IncompatibleClassChangeError iae) {
212 } catch (IllegalAccessError iae) {

Completed in 727 milliseconds

1 2 3 4