Home
last modified time | relevance | path

Searched refs:ite (Results 1 – 20 of 20) sorted by relevance

/art/test/601-method-access/src/
DMain.java28 } catch (InvocationTargetException ite) { in main()
29 if (ite.getCause() instanceof IllegalAccessError) { in main()
32 System.out.println("Got unexpected failure " + ite.getCause()); in main()
/art/test/647-jni-get-field-id/src/
DMain.java55 } catch (InvocationTargetException ite) { in testClassLoading()
56 if (!(ite.getCause() instanceof NoSuchFieldError) || in testClassLoading()
57 !(ite.getCause().getCause() instanceof NoClassDefFoundError)) { in testClassLoading()
58 throw ite; in testClassLoading()
60 NoClassDefFoundError ncdfe = (NoClassDefFoundError) ite.getCause().getCause(); in testClassLoading()
DDefiningLoader.java109 } catch (InvocationTargetException ite) { in findClassDalvik()
110 throw new ClassNotFoundException("newInstance failed", ite); in findClassDalvik()
130 } catch (InvocationTargetException ite) { in findClassDalvik()
132 ite.getCause()); in findClassDalvik()
/art/test/626-const-class-linking/src/
DMain.java107 } catch (InvocationTargetException ite) { in testMisbehavingLoader()
108 String message = ite.getCause().getMessage(); in testMisbehavingLoader()
115 System.out.println(ite.getCause().getClass().getName() + ": " + message); in testMisbehavingLoader()
137 } catch (InvocationTargetException ite) { in testRacyLoader()
138 results[my_index] = ite.getCause(); in testRacyLoader()
174 } catch (InvocationTargetException ite) { in testRacyLoader2()
175 results[my_index] = ite.getCause(); in testRacyLoader2()
209 } catch (InvocationTargetException ite) { in testRacyMisbehavingLoader()
210 results[my_index] = ite.getCause(); in testRacyMisbehavingLoader()
244 } catch (InvocationTargetException ite) { in testRacyMisbehavingLoader2()
[all …]
DDefiningLoader.java109 } catch (InvocationTargetException ite) { in findClassDalvik()
110 throw new ClassNotFoundException("newInstance failed", ite); in findClassDalvik()
130 } catch (InvocationTargetException ite) { in findClassDalvik()
132 ite.getCause()); in findClassDalvik()
/art/test/068-classloader/src/
DFancyLoader.java102 } catch (InvocationTargetException ite) { in findClassDalvik()
103 throw new ClassNotFoundException("newInstance failed", ite); in findClassDalvik()
123 } catch (InvocationTargetException ite) { in findClassDalvik()
125 ite.getCause()); in findClassDalvik()
/art/test/086-null-super/src/
DMain.java153 } catch (InvocationTargetException ite) { in testFailLoadAndGc()
154 Throwable cause = ite.getCause(); in testFailLoadAndGc()
159 ite.printStackTrace(System.out); in testFailLoadAndGc()
/art/test/716-jli-jit-samples/src-art/
DMain.java101 } catch (InvocationTargetException ite) { in testMethodHandleCounters()
102 assertEquals(ite.getCause().getClass(), UnsupportedOperationException.class); in testMethodHandleCounters()
127 } catch (InvocationTargetException ite) { in testVarHandleCounters()
128 assertEquals(ite.getCause().getClass(), UnsupportedOperationException.class); in testVarHandleCounters()
/art/test/087-gc-after-link/src/
DMain.java169 } catch (InvocationTargetException ite) { in processFailLoadAndGc()
170 Throwable cause = ite.getCause(); in processFailLoadAndGc()
175 ite.printStackTrace(System.out); in processFailLoadAndGc()
/art/test/156-register-dex-file-multi-loader/src/
DMain.java59 } catch (InvocationTargetException ite) { in loadClass()
60 throw new ClassNotFoundException(className, ite.getCause()); in loadClass()
/art/test/004-JniTest/src/
DMain.java380 } catch (InvocationTargetException ite) { in testDoubleLoad()
381 if (ite.getCause() instanceof UnsatisfiedLinkError) { in testDoubleLoad()
383 String msg = ite.getCause().getMessage(); in testDoubleLoad()
387 throw new RuntimeException("Could not find pattern in message", ite.getCause()); in testDoubleLoad()
392 throw new RuntimeException(ite); in testDoubleLoad()
/art/test/161-final-abstract-class/smali/
DMain.smali25 # } catch (InvocationTargetException ite) {
26 # if (ite.getCause() instanceof InstantiationError) {
28 # ite.getCause().getClass().getName() + ": " + ite.getCause().getMessage());
30 # ite.printStackTrace(System.out);
/art/test/044-proxy/src/
DBasicTest.java114 } catch (InvocationTargetException ite) { in createProxy()
115 System.out.println("failed: " + ite); in createProxy()
302 } catch (InvocationTargetException ite) { in invoke()
303 throw ite.getTargetException(); in invoke()
DWrappedThrow.java237 } catch (InvocationTargetException ite) { in invoke()
238 throw ite.getTargetException(); in invoke()
/art/test/046-reflect/src/
DMain.java167 } catch (InvocationTargetException ite) { in run()
169 System.out.println(ite.getClass().getName()); in run()
170 System.out.println(ite.getCause()); in run()
394 } catch (InvocationTargetException ite) { in run()
428 } catch (InvocationTargetException ite) { in checkSwap()
429 ite.printStackTrace(System.out); in checkSwap()
439 } catch (InvocationTargetException ite) { in checkSwap()
440 ite.printStackTrace(System.out); in checkSwap()
449 } catch (InvocationTargetException ite) { in checkSwap()
/art/test/074-gc-thrash/src/
DMain.java56 } catch (InvocationTargetException ite) { in main()
57 System.out.println(ite); in main()
/art/test/064-field-access/src/
DMain.java46 } catch (InvocationTargetException ite) { in main()
47 if (ite.getCause() instanceof IllegalAccessError) { in main()
50 System.out.println("Got unexpected failure " + ite.getCause()); in main()
/art/compiler/utils/
Dassembler_thumb_test_expected.cc.inc60 " c2: 0c bf ite eq\n"
69 " de: 0c bf ite eq\n"
73 " e8: 0c bf ite eq\n"
/art/test/956-methodhandles/src/
DMain.java1829 } catch (InvocationTargetException ite) { in testReflectiveCalls()
1830 assertEquals(ite.getCause().getClass(), UnsupportedOperationException.class); in testReflectiveCalls()
/art/compiler/optimizing/
Dcode_generator_arm_vixl.cc4704 __ ite(is_min ? lt : gt); in GenerateMinMaxInt() local