Searched defs:TestError (Results 1 - 13 of 13) 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, const char* expr, const char* file, int line);
82 TestError (const std::string& message);
83 virtual ~TestError (void) throw() {}
129 //! Throw TestError.
130 #define TCU_FAIL(MSG) TCU_THROW(TestError, MSG)
132 //! Throw TestError if condition X is not satisfied.
133 #define TCU_CHECK(X) do { if (!(!deGetFalse() && (X))) throw tcu::TestError(DE_NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
135 //! Throw TestError i
[all...]
H A DtcuDefs.cpp88 TestError::TestError (const char* message, const char* expr, const char* file, int line) function in class:tcu::TestError
92 TestError::TestError (const std::string& message, const char* expr, const char* file, int line) function in class:tcu::TestError
97 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
116 TestError in case the layout is not consistent.
130 raise TestError('Section end 0x%x exceeds file size %x' % (
158 raise TestError('%s duplicated in the layout' % name)
269 raise TestError('INTERNAL ERROR: invalid layout map: %s.' %
290 raise TestError('INTERNAL ERROR: invalid layout map.')
299 raise TestError('INTERNAL ERROR: unmatched data size.')
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/shaping/
H A DDataDrivenArabicShapingRegTest.java465 public void TestError() { method in class:DataDrivenArabicShapingRegTest.ErrorDataTest
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
H A DDataDrivenArabicShapingRegTest.java462 public void TestError() { method in class:DataDrivenArabicShapingRegTest.ErrorDataTest
/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/robolectric-shadows/shadowapi/src/test/java/org/robolectric/util/
H A DReflectionHelpersTest.java163 failBecauseExceptionWasNotThrown(TestError.class);
166 } catch (TestError e) {
203 failBecauseExceptionWasNotThrown(TestError.class);
206 } catch (TestError e) {
241 failBecauseExceptionWasNotThrown(TestError.class);
244 } catch (TestError e) {
266 private static class TestError extends Error { class in class:ReflectionHelpersTest
326 throw new TestError();
338 throw new TestError();
345 throw new TestError();
[all...]
/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...]
/external/python/cpython3/Modules/
H A D_testcapimodule.c24 static PyObject *TestError; /* set to exception object in init */ variable
26 /* Raise TestError with test_name + ": " + msg, and return NULL. */
31 PyErr_Format(TestError, "%s: %s", test_name, msg);
45 PyErr_Format(TestError,
80 PyErr_Format(TestError, \
88 PyErr_Format(TestError, \
163 PyErr_SetString(TestError,
218 TestError,
338 TestError,
345 TestError,
[all...]

Completed in 612 milliseconds