Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 25 of 138) sorted by relevance

123456

/art/test/412-new-array/src/
DMain.java243 Throwable exception = null; in testSmaliFillArrayData() local
248 exception = e.getCause(); in testSmaliFillArrayData()
249 assertTrue(exception instanceof NullPointerException); in testSmaliFillArrayData()
251 assertNotNull(exception); in testSmaliFillArrayData()
270 Throwable exception = null; in testSmaliFillArrayData() local
274 exception = e.getCause(); in testSmaliFillArrayData()
275 assertTrue(exception instanceof IndexOutOfBoundsException); in testSmaliFillArrayData()
277 assertNotNull(exception); in testSmaliFillArrayData()
278 exception = null; in testSmaliFillArrayData()
287 exception = e.getCause(); in testSmaliFillArrayData()
[all …]
/art/test/020-string/
Dexpected.txt5 Got expected exception
8 Got expected exception
9 Got expected exception
10 Got expected exception
11 Got expected exception
12 Got expected exception
/art/test/136-daemon-jni-shutdown/
Dexpected.txt2 About to call exception check
3 About to call exception check
4 About to call exception check
5 About to call exception check
/art/test/989-method-trace-throw/
Dexpected.txt3 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$doNoth…
6 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$doNoth…
8 Normal: Leaving public static void art.Test989.throwA() returned <exception>
11 Normal: Leaving public static native void art.Test989.throwANative() returned <exception>
16 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$return…
20 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$return…
24 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$accept…
28 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$accept…
31 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$tryCat…
35 Received no exception as expected for test[class art.Test989$NormalTracer, class art.Test989$return…
[all …]
/art/test/070-nio-buffer/
Dexpected.txt2 Got expected buffer overflow exception
3 Got expected out-of-bounds exception
4 Got expected buffer overflow exception
/art/test/407-arrays/src/
DMain.java134 ArrayIndexOutOfBoundsException exception = null; in ensureThrows() local
138 exception = e; in ensureThrows()
141 assertNotNull(exception); in ensureThrows()
142 assertTrue(exception.toString().contains(Integer.toString(index))); in ensureThrows()
144 exception = null; in ensureThrows()
148 exception = e; in ensureThrows()
151 assertNotNull(exception); in ensureThrows()
152 assertTrue(exception.toString().contains(Integer.toString(index))); in ensureThrows()
/art/test/081-hot-exceptions/src/
DMain.java29 int exception = 0; in main() local
36 exception++; in main()
40 System.out.println("exception = " + exception); in main()
/art/test/427-bounds/src/
DMain.java19 Exception exception = null; in main() local
23 exception = e; in main()
26 String exceptionMessage = exception.getMessage(); in main()
/art/runtime/interpreter/mterp/mips/
Dop_throw.S5 EXPORT_PC() # exception handler can throw
7 GET_VREG(a1, a2) # a1 <- vAA (exception object)
10 sw a1, THREAD_EXCEPTION_OFFSET(rSELF) # thread->exception <- obj
Dop_move_exception.S3 lw a3, THREAD_EXCEPTION_OFFSET(rSELF) # get exception obj
7 SET_VREG_OBJECT(a3, a2) # fp[AA] <- exception obj
8 sw zero, THREAD_EXCEPTION_OFFSET(rSELF) # clear exception
/art/test/054-uncaught/
Dexpected.txt2 Uncaught exception DEFAULT!
7 Uncaught exception THREAD!
12 Uncaught exception THREAD!
17 Uncaught exception DEFAULT!
/art/test/989-method-trace-throw/src/art/
DTest989.java63 private static String getInfo(Object m, boolean exception, Object result) { in getInfo() argument
65 if (exception) { in getInfo()
75 public void methodExited(Object m, boolean exception, Object result); in methodExited() argument
86 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
88 System.out.println("Normal: Leaving " + getInfo(m, exception, result)); in methodExited()
100 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
102 System.out.println("ThrowEnter: Leaving " + getInfo(m, exception, result)); in methodExited()
114 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
119 System.out.println("ThrowExit: Leaving " + getInfo(m, exception, result)); in methodExited()
120 throw new ErrorB("Throwing error while exit " + getInfo(m, exception, result)); in methodExited()
[all …]
/art/runtime/interpreter/mterp/mips64/
Dop_move_exception.S3 ld a0, THREAD_EXCEPTION_OFFSET(rSELF) # load exception obj
5 SET_VREG_OBJECT a0, a2 # vAA <- exception obj
7 sd zero, THREAD_EXCEPTION_OFFSET(rSELF) # clear exception
Dop_throw.S7 GET_VREG_U a0, a2 # a0 <- vAA (exception object)
9 sd a0, THREAD_EXCEPTION_OFFSET(rSELF) # thread->exception <- obj
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUniqueProgramTrackerListener.java147 } catch (IOException exception) { in saveUniqueProgsData()
148 exception.printStackTrace(); in saveUniqueProgsData()
149 } catch (InterruptedException exception) { in saveUniqueProgsData()
150 exception.printStackTrace(); in saveUniqueProgsData()
176 } catch (IOException exception) { in saveUniqueProgsData()
177 exception.printStackTrace(); in saveUniqueProgsData()
178 } catch (InterruptedException exception) { in saveUniqueProgsData()
179 exception.printStackTrace(); in saveUniqueProgsData()
/art/test/099-vmdebug/
Dexpected.txt15 Got expected exception
17 Got expected exception
19 Got expected exception
/art/test/044-proxy/
Dexpected.txt58 Dupe threw expected exception
59 Clash threw expected exception
60 Clash2 threw expected exception
61 Clash3 threw expected exception
62 Clash4 threw expected exception
80 Got expected exception
83 Got expected exception
86 Got expected exception
93 Got expected exception
/art/test/077-method-override/
Dexpected.txt14 Got expected exception - ovws
15 Got expected exception - oswv
/art/runtime/interpreter/mterp/arm/
Dop_throw.S7 GET_VREG r1, r2 @ r1<- vAA (exception object)
10 str r1, [rSELF, #THREAD_EXCEPTION_OFFSET] @ thread->exception<- obj
Dop_move_exception.S6 SET_VREG_OBJECT r3, r2 @ fp[AA]<- exception obj
8 str r1, [rSELF, #THREAD_EXCEPTION_OFFSET] @ clear exception
Dop_fill_array_data.S10 cmp r0, #0 @ 0 means an exception is thrown
11 beq MterpPossibleException @ exception?
/art/test/952-invoke-custom/
Dexpected.txt1 Caught exception from uninitialized call site
2 Caught exception from uninitialized call site
/art/test/086-null-super/
Dinfo.txt1 ClassLoader.loadClass() is expected to throw an exception, usually
5 that if there was no exception, the value returned would be non-null.
/art/test/401-optimizing-compiler/src/
DMain.java90 Exception exception = null; in main() local
94 exception = e; in main()
98 exception = null; in main()
102 exception = e; in main()
105 if (exception == null) { in main()
/art/test/946-obsolete-throw/
Dexpected.txt6 Received error : java.lang.Error: Throwing exception into an obsolete method!
7 java.lang.Error: Throwing exception into an obsolete method!

123456