Home
last modified time | relevance | path

Searched defs:TestException (Results 1 – 12 of 12) sorted by relevance

/aosp12/frameworks/base/tests/SystemMemoryTest/host/src/com/android/tests/sysmem/host/
H A DTestException.java23 class TestException extends Exception { class
24 TestException(Exception cause) { in TestException() method in TestException
28 TestException(String msg) { in TestException() method in TestException
32 TestException(String msg, Exception cause) { in TestException() method in TestException
/aosp12/art/test/1927-exception-event/src/art/
H A DTest1927.java74 public static class TestException extends Error { class in Test1927
75 public TestException(String s) { super(s); } in TestException() method in Test1927.TestException
76 public TestException() { super("from java"); } in TestException() method in Test1927.TestException
/aosp12/art/test/111-unresolvable-exception/src/
H A DTestException.java17 public class TestException extends Exception { class
/aosp12/art/test/1928-exception-event-exception/src/art/
H A DTest1928.java75 public static class TestException extends BaseTestException { class in Test1928
76 public TestException(String e) { super(e); } in TestException() method in Test1928.TestException
77 public TestException(String e, Throwable t) { super(e, t); } in TestException() method in Test1928.TestException
/aosp12/art/test/1930-monitor-info/src/art/
H A DMonitors.java113 public static class TestException extends Error { class in Monitors
114 public TestException() { super(); } in TestException() method in Monitors.TestException
115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException
116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException
/aosp12/art/test/1931-monitor-events/src/art/
H A DMonitors.java113 public static class TestException extends Error { class in Monitors
114 public TestException() { super(); } in TestException() method in Monitors.TestException
115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException
116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException
/aosp12/art/test/1932-monitor-events-misc/src/art/
H A DMonitors.java113 public static class TestException extends Error { class in Monitors
114 public TestException() { super(); } in TestException() method in Monitors.TestException
115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException
116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException
/aosp12/art/test/1933-monitor-current-contended/src/art/
H A DMonitors.java113 public static class TestException extends Error { class in Monitors
114 public TestException() { super(); } in TestException() method in Monitors.TestException
115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException
116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException
/aosp12/art/test/1934-jvmti-signal-thread/src/art/
H A DMonitors.java113 public static class TestException extends Error { class in Monitors
114 public TestException() { super(); } in TestException() method in Monitors.TestException
115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException
116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException
/aosp12/art/test/jvmti-common/
H A DMonitors.java113 public static class TestException extends Error { class in Monitors
114 public TestException() { super(); } in TestException() method in Monitors.TestException
115 public TestException(String s) { super(s); } in TestException() method in Monitors.TestException
116 public TestException(String s, Throwable c) { super(s, c); } in TestException() method in Monitors.TestException
/aosp12/art/test/1929-exception-catch-exception/src/art/
H A DTest1929.java79 public static class TestException extends BaseTestException { class in Test1929
80 public TestException(String e) { super(e); } in TestException() method in Test1929.TestException
81 public TestException(String e, Throwable t) { super(e, t); } in TestException() method in Test1929.TestException
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/testing/
H A DAssertTest.java79 static class TestException extends RuntimeException { class in AssertTest