Searched defs:TestError (Results 1 - 11 of 11) sorted by relevance

/external/deqp/framework/common/
H A DtcuDefs.hpp77 class TestError : public TestException class in namespace:tcu
80 TestError (const char* message, const char* expr, const char* file, int line);
81 TestError (const std::string& message);
82 virtual ~TestError (void) throw() {}
128 //! Throw TestError.
129 #define TCU_FAIL(MSG) TCU_THROW(TestError, MSG)
131 //! Throw TestError if condition X is not satisfied.
132 #define TCU_CHECK(X) do { if (!(!deGetFalse() && (X))) throw tcu::TestError(DE_NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
134 //! Throw TestError if condition X is not satisfied.
135 #define TCU_CHECK_MSG(X, MSG) do { if (!(!deGetFalse() && (X))) throw tcu::TestError((MS
[all...]
H A DtcuDefs.cpp88 TestError::TestError (const char* message, const char* expr, const char* file, int line) function in class:tcu::TestError
93 TestError::TestError (const std::string& message) function in class:tcu::TestError
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py56 class TestError(DistutilsError): class in inherits:DistutilsError
145 raise TestError(
277 raise TestError(
/external/autotest/client/cros/faft/utils/
H A Dsaft_flashrom_util.py24 class TestError(Exception): class in inherits:Exception
112 TestError in case the layout is not consistent.
120 raise TestError('bad section at 0x%x..0x%x' % (
124 raise TestError('Section end 0x%x exceeds file size %x' % (
152 raise TestError('%s duplicated in the layout' % name)
263 raise TestError('INTERNAL ERROR: invalid layout map: %s.' %
284 raise TestError('INTERNAL ERROR: invalid layout map.')
292 raise TestError('INTERNAL ERROR: unmatched data size.')
/external/libyuv/files/tools_libyuv/autoroller/unittests/
H A Droll_deps_test.py44 class TestError(Exception): class in inherits:Exception
58 raise TestError('Got unexpected\n%s\n%s' % (args, kwargs))
63 raise TestError(message)
/external/icu/icu4c/source/test/intltest/
H A Dunifiedcachetest.cpp77 void TestError();
87 TESTCASE_AUTO(TestError);
352 void UnifiedCacheTest::TestError() { function in class:UnifiedCacheTest
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/shaping/
H A DArabicShapingRegTest.java528 public void TestError() { method in class:ArabicShapingRegTest
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
H A DArabicShapingRegTest.java527 public void TestError() { method in class:ArabicShapingRegTest
/external/autotest/client/common_lib/
H A Derror.py67 class TestError(TestBaseException): class in inherits:TestBaseException
95 class UnhandledTestError(TestError):
98 if isinstance(unhandled_exception, TestError):
99 TestError.__init__(self, *unhandled_exception.args)
101 TestError.__init__(self, unhandled_exception)
107 TestError.__init__(self, msg)
125 class CmdError(TestError):
128 TestError.__init__(self, command, result_obj, additional_text)
159 class PackageError(TestError):
/external/autotest/client/cros/cellular/pseudomodem/
H A Dpm_errors.py344 class TestError(dbus.exceptions.DBusException): class in inherits:dbus.exceptions.DBusException
/external/python/cpython2/Modules/
H A D_testcapimodule.c17 static PyObject *TestError; /* set to exception object in init */ variable
19 /* Raise TestError with test_name + ": " + msg, and return NULL. */
27 PyErr_SetString(TestError, "internal error msg too large");
30 PyErr_SetString(TestError, buf);
49 PyErr_SetString(TestError, buf);
105 PyErr_SetString(TestError,
154 TestError,
242 TestError,
249 TestError,
259 TestError,
[all...]

Completed in 433 milliseconds