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

  /art/test/111-unresolvable-exception/src/
TestException.java 17 public class TestException extends Exception {
  /external/chromium_org/testing/gtest/test/
gtest-death-test_ex_test.cc 61 class TestException : public std::exception {
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /external/gtest/test/
gtest-death-test_ex_test.cc 61 class TestException : public std::exception {
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /external/chromium_org/build/android/pylib/utils/
reraiser_thread_unittest.py 14 class TestException(Exception):
35 raise TestException
40 with self.assertRaises(TestException):
73 raise TestException
77 with self.assertRaises(TestException):
timeout_retry_unittest.py 13 class TestException(Exception):
25 raise TestException
43 self.assertRaises(TestException,
  /external/deqp/framework/common/
tcuDefs.cpp 76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result)
82 TestException::TestException (const std::string& message, qpTestResult result)
89 : TestException(message, expr, file, line, QP_TEST_RESULT_FAIL)
94 : TestException(message, QP_TEST_RESULT_FAIL)
99 : TestException(message, expr, file, line, QP_TEST_RESULT_INTERNAL_ERROR)
104 : TestException(message, QP_TEST_RESULT_INTERNAL_ERROR)
109 : TestException(message, expr, file, line, QP_TEST_RESULT_RESOURCE_ERROR)
114 : TestException(message, QP_TEST_RESULT_RESOURCE_ERROR
    [all...]
tcuDefs.hpp 62 class TestException : public Exception
65 TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result);
66 TestException (const std::string& message, qpTestResult result);
67 virtual ~TestException (void) throw() {}
77 class TestError : public TestException
86 class InternalError : public TestException
95 class ResourceError : public TestException
106 class NotSupportedError : public TestException
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
InstanceOnlyModifierDebuggee.java 28 static class TestException extends Exception {
42 } catch (TestException e) {
43 System.out.println("Catch TestException");
53 private void throwException() throws TestException {
56 throw new TestException();
64 new TestException(); // force class loading.
CountModifierDebuggee.java 36 static class TestException extends Exception {
44 public void throwException() throws TestException {
46 throw new TestException();
59 } catch (TestException e) {
73 new TestException(); // force class loading.
ThreadOnlyModifierDebuggee.java 28 static class TestException extends Exception {
62 } catch (TestException e) {
67 void throwException() throws TestException {
70 throw new TestException();
81 new TestException(); // force class loading.
  /external/chromium_org/build/android/pylib/base/
test_dispatcher_unittest.py 25 class TestException(Exception):
78 raise TestException
167 with self.assertRaises(TestException):

Completed in 3185 milliseconds