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

1 2 3

  /dalvik/dx/tests/081-dex-throws-list/
Blort.java 20 throws RuntimeException {
21 throw new RuntimeException();
  /dalvik/dx/tests/092-ssa-cfg-edge-cases/
Blort.java 16 throw new RuntimeException();
17 } catch (RuntimeException ex){
  /libcore/luni/src/main/java/java/lang/
RuntimeException.java 21 * {@code RuntimeException} is the superclass of all classes that represent
24 * doesn't extend {@code RuntimeException} or {@link Error}), the compiler does
27 public class RuntimeException extends Exception {
32 * Constructs a new {@code RuntimeException} that includes the current stack
35 public RuntimeException() {
40 * Constructs a new {@code RuntimeException} with the current stack trace
46 public RuntimeException(String detailMessage) {
51 * Constructs a new {@code RuntimeException} with the current stack trace,
59 public RuntimeException(String detailMessage, Throwable throwable) {
64 * Constructs a new {@code RuntimeException} with the current stack trac
    [all...]
  /dalvik/dx/tests/046-dex-exceptions/
Blort.java 21 throw new RuntimeException();
31 } catch (RuntimeException ex) {
40 } catch (RuntimeException ex) {
48 } catch (RuntimeException ex) {
54 } catch (RuntimeException ex) {
  /dalvik/dx/tests/082-dex-throws-list-sharing/
Blort.java 20 throws RuntimeException {
21 throw new RuntimeException();
25 throws RuntimeException {
26 throw new RuntimeException();
31 throw new RuntimeException();
36 throw new RuntimeException();
  /cts/tools/dx-tests/src/dxc/junit/opcodes/athrow/jm/
T_athrow_1.java 22 throw new RuntimeException();
T_athrow_10.java 22 throw new RuntimeException();
T_athrow_12.java 24 throw new RuntimeException();
25 }catch(RuntimeException e1) {
28 } catch(RuntimeException e2) {
T_athrow_3.java 22 throw new RuntimeException();
T_athrow_4.java 22 throw new RuntimeException();
T_athrow_6.java 22 throw new RuntimeException();
T_athrow_7.java 22 throw new RuntimeException();
T_athrow_9.java 22 throw new RuntimeException();
  /cts/tools/vm-tests/src/dot/junit/opcodes/opc_throw/d/
T_opc_throw_1.java 22 throw new RuntimeException();
T_opc_throw_10.java 22 throw new RuntimeException();
T_opc_throw_12.java 25 } catch(RuntimeException e2) {
32 throw new RuntimeException();
33 } catch(RuntimeException e1) {
T_opc_throw_4.java 22 throw new RuntimeException();
T_opc_throw_9.java 22 throw new RuntimeException();
  /libcore/luni/src/test/java/tests/api/java/util/
SampleBundleClass.java 33 throw new RuntimeException();
  /cts/tests/src/android/graphics/drawable/cts/
DrawableTestUtils.java 61 throw new RuntimeException();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderPrepareStateUnitTest.java 58 throw new RuntimeException();
  /packages/apps/Camera/src/com/android/camera/ui/
CameraEGLConfigChooser.java 50 throw new RuntimeException("eglChooseConfig failed");
54 throw new RuntimeException("No configs match configSpec");
60 throw new RuntimeException();
85 throw new RuntimeException(
  /dalvik/tests/045-reflect-array/src/
Main.java 30 throw new RuntimeException();
32 throw new RuntimeException();
35 throw new RuntimeException("store should have failed");
42 throw new RuntimeException("bad len");
48 throw new RuntimeException("cast should have failed");
55 throw new RuntimeException();
71 throw new RuntimeException();
73 throw new RuntimeException();
78 throw new RuntimeException("bad len");
95 throw new RuntimeException("store should have failed")
    [all...]
  /frameworks/base/core/java/android/util/
SparseBooleanArray.java 237 throw new RuntimeException();
  /frameworks/base/graphics/java/android/graphics/
Picture.java 121 throw new RuntimeException();
135 throw new RuntimeException();
162 throw new RuntimeException(
169 throw new RuntimeException(

Completed in 496 milliseconds

1 2 3