Searched defs:TestError (Results 1 - 5 of 5) 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/icu/icu4c/source/test/intltest/
H A Dunifiedcachetest.cpp67 void TestError();
74 TESTCASE_AUTO(TestError);
129 void UnifiedCacheTest::TestError() { function in class:UnifiedCacheTest
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
H A DArabicShapingRegTest.java513 public void TestError() { method in class:ArabicShapingRegTest

Completed in 174 milliseconds