HomeSort by relevance Sort by last modified time
    Searched defs:MyException (Results 1 - 16 of 16) sorted by null

  /art/test/088-monitor-verification/src/
MyException.java 17 public class MyException extends RuntimeException {
18 public MyException() {
21 public MyException(String msg) {
Main.java 34 } catch (MyException me) {}
80 throw new MyException();
  /dalvik/tests/088-monitor-verification/src/
MyException.java 17 public class MyException extends RuntimeException {
18 public MyException() {
21 public MyException(String msg) {
Main.java 34 } catch (MyException me) {}
82 throw new MyException();
  /external/chromium_org/v8/test/mjsunit/
value-of.js 28 function MyException() { }
31 o.valueOf = function() { throw new MyException(); }
33 assertThrows(function() { o + 1 }, MyException);
  /external/v8/test/mjsunit/
value-of.js 28 function MyException() { }
31 o.valueOf = function() { throw new MyException(); }
33 assertThrows(function() { o + 1 }, MyException);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 435 # Bug #2542: if issubclass(e, MyException) raises an exception,
441 class MyException(Exception):
448 except MyException, e:
449 self.fail("exception should not be a MyException")
469 class MyException(Exception):
474 raise MyException
test_fileio.py 459 class MyException(Exception): pass
463 raise MyException("blocked setting name")
466 self.assertRaises(MyException, MyFileIO, fd)
test_descr.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 435 # Bug #2542: if issubclass(e, MyException) raises an exception,
441 class MyException(Exception):
448 except MyException, e:
449 self.fail("exception should not be a MyException")
469 class MyException(Exception):
474 raise MyException
test_fileio.py 459 class MyException(Exception): pass
463 raise MyException("blocked setting name")
466 self.assertRaises(MyException, MyFileIO, fd)
test_descr.py     [all...]
  /external/chromium/testing/gmock/test/
gmock-more-actions_test.cc 601 class MyException {};
604 const Action<double(char ch)> a = Throw(MyException());
605 EXPECT_THROW(a.Perform(make_tuple('0')), MyException);
609 const Action<double()> a = Throw(MyException());
610 EXPECT_THROW(a.Perform(make_tuple()), MyException);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 125 private static class MyException extends Exception {}
128 CheckedFuture<String, MyException> future = Futures.immediateCheckedFuture(
137 CheckedFuture<String, MyException> future1 = Futures.immediateCheckedFuture(
139 CheckedFuture<String, MyException> future2 = Futures.immediateCheckedFuture(
150 MyException exception = new MyException();
151 CheckedFuture<String, MyException> future =
164 fail("This call was supposed to throw an MyException");
165 } catch (MyException expected) {
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest1.java 270 private static class MyException extends java.io.IOException {
292 throw new MyException();
300 private static class MyException extends java.io.IOException {
316 throw new MyException();
337 private static class MyException extends java.io.IOException {
354 throw new MyException();
    [all...]
ObjectOutputStreamTest.java 305 private static class MyException extends java.io.IOException {
321 throw new MyException();
336 private static class MyException extends java.io.IOException {
353 throw new MyException();
    [all...]

Completed in 384 milliseconds